I have added a deep link support in my app, and it works fine from gmail, messaging apps.
But from facebook, it opens the browser and not the app.
<activity
android:name="..MyActivity">
<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="https"/>
<data android:host="mywebsite.com"/>
<data android:pathPrefix="/screen1"/>
<data android:pathPrefix="/screen2"/>
</intent-filter>
</activity>
Do i need to add something additional to make it work on facebook.