Deeplinks gives empty path

I have a problem of implementing DeepLinks. I can open the app from the URL like myapp://myapp.com/route. But it doesn’t handle path of it. It just opens the program.

I open it with :

 this.deeplinks.route({
      '/route': RoutePage
        }).subscribe(match => {
      // match.$route - the route we matched, which is the matched entry from the arguments to route()
      // match.$args - the args passed in the link
      // match.$link - the full link data
      console.log('Successfully matched route', match);
    }, nomatch => {
      // nomatch.$link - the full link data
      console.error('Got a deeplink that didn\'t match', nomatch);
    });

But im not receiving any console logs and the path is empty, just the following message :

My config.xml

 <plugin name="ionic-plugin-deeplinks" spec="^1.0.17">
        <variable name="URL_SCHEME" value="iskibris" />
        <variable name="DEEPLINK_SCHEME" value="https" />
        <variable name="DEEPLINK_HOST" value="iskibris.com" />
        <variable name="ANDROID_PATH_PREFIX" value="/" />
        <variable name="ANDROID_2_PATH_PREFIX" value="/" />
        <variable name="ANDROID_3_PATH_PREFIX" value="/" />
        <variable name="ANDROID_4_PATH_PREFIX" value="/" />
        <variable name="ANDROID_5_PATH_PREFIX" value="/" />
        <variable name="DEEPLINK_2_SCHEME" value="" />
        <variable name="DEEPLINK_2_HOST" value="" />
        <variable name="DEEPLINK_3_SCHEME" value="" />
        <variable name="DEEPLINK_3_HOST" value="" />
        <variable name="DEEPLINK_4_SCHEME" value="" />
        <variable name="DEEPLINK_4_HOST" value="" />
        <variable name="DEEPLINK_5_SCHEME" value="" />
        <variable name="DEEPLINK_5_HOST" value="" />
    </plugin>

Link of calling the app iskibris://iskibris.com/route
Could someone help me

I’m having the same issue. Did you find a solution? Cheers.

My app’s routing/navigation doesn’t show in the address bar. I have my app set up following these instructions https://ionicframework.com/docs/api/navigation/IonicPage/ and I have it working in test projects, but in this one it just says http://localhost:8001/index.html no matter what page I navigate too. (I took over the project from someone else, so I didn’t set it up originally.) Does anyone have any idea why this would happen?