I'm trying to deeplink to a specific page on my Android app.
This is what i've tried:
DeepLinkingTest://?screen=ResetResponse
but it just opens the app home page
Update:
I've just tried:
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<data android:scheme="deeplinkingtest"
android:host="resetresponse"/>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
but still opening on home page