I'm currently trying to use Firebase dynamic links (deep links). Core of the application should share the link on social media.
I've successfully created Short Link (200 OK) shared the link to both G+ and Facebook. But there is a problem
- Mobile browser -> deep link -> successful redirect
- G+ app -> deep link -> successful redirect
- Facebook app -> deep link (not installed my app) -> install -> continue -> success
- Facebook app -> deep link (installed my app) -> opens Playstore app with my app displayed instead of running the app
I'm using http scheme as suggested on Android developers site:
<activity android:name=".LinkActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="..."/>
</intent-filter>
</activity>
So How can I properly use Firebase dynamic link with Facebook app?