Firebase dynamic link is not open my app as new separate app in Android -


i have configured firebase dynamic link in sample android app,

        <activity android:name=".mainactivity" >             <intent-filter>                 <action android:name="android.intent.action.main" />                  <category android:name="android.intent.category.launcher" />             </intent-filter>              <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:host="example.com"                     android:scheme="https"/>             </intent-filter>          </activity> 

its working fine when click dynamic link , issue opening in same link shared app whatsup, messages.

how open app separately when click dynamic link in whatsup or messages app.

please refer below screenshots

  1. open dynamic link through whatsup installed deeplink app , open deeplink app in same whatsup window.

enter image description here

  1. open dynamic link through whatsup without deeplink app, in case open separate playstore app , how ??

enter image description here


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -