We need to implement an android app link into our mobile application. This way a single mail-link can be used to open on either mobile (in the app) or an existing webapp. (deeplinks won't do the trick)
https://developer.android.com/training/app-links
We can't seem to find a solution to implement this.
On native android this works by configuring the following into the android manifest:
<application> <!-- ... --> <activity android:name=".PocActivity"> <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="https" android:host="www.clienturl.be" android:pathPrefix="/services" /> </intent-filter> </activity> </application>
Hi Wannes,
I didn't use the component, but by it's description it seems it might work. Have you taken a look at the Dynamic Links Plugin (Firebase)?
@Wannes Verdonck
did you resolve this situation? And if so, how did you solve it? I also need android app link into our mobile application.