ionic-team / ionic-plugin-deeplinks

Handle deeplinks into your Ionic/Cordova apps from Universal Links, App Links, and Custom URL schemes. For those using Ionic 2, there are some nice goodies that make life easier.
Other
333 stars 218 forks source link

PhoneGapBuild not working #163

Open awesomeguy3 opened 5 years ago

awesomeguy3 commented 5 years ago

Since Nordnet's plugin for universal links / deep links is not working with PhoneGap Build as that plugin is using custom config tags (which are being removed at PhoneGap Build) and also hooks which PGB does not support (it's also deprecated), I'm searching another plugin for using deep links, and this one works fine when building the app with Cordova CLI, but it does not work when building with PGB.

Since I didn't found any issue regarding this, maybe I'm doing something wrong or I need to set up something different for PGB, any ideas? I'd really like to avoid Branch.io's plugin if possible, and EddyVerbruggen's plugin was not working for me also.

tmdevde commented 5 years ago
<gap:plugin name="ionic-plugin-deeplinks" source="npm">
        <param name="URL_SCHEME" value="myapp" />
        <param name="DEEPLINK_SCHEME" value="https" />
        <param name="DEEPLINK_HOST" value="myapp.com" />
        <param name="ANDROID_PATH_PREFIX" value="/" />
</gap:plugin>

this is working for me.