e-imaxina / cordova-plugin-deeplinks

Cordova plugin to support Universal/Deep Links for iOS/Android.
MIT License
33 stars 68 forks source link

App opens with link, but callback isn't fired #24

Closed caleb87 closed 4 years ago

caleb87 commented 4 years ago

The app will open with a link on Android, but the callback won't trigger. Any ideas?

I used the subscribe after device ready: universalLinks.subscribe(null, mycallbackFunction);

config.xml

    <universal-links>
        <ios-team-id value="asdfasdfa" />
        <host name="*.mydomain.com" scheme="https">
            <path url="/limitedPath/*" />
        </host>
    </universal-links>
caleb87 commented 4 years ago

I added the event to the config, and it started working.

DanaStefanoska commented 4 years ago

Hello, I'm struggling with the same problem for some time, I'm using angular for this and no matter how I import universal links the subscribe is not firing, can you please add that part of your working solution? Thank you