How to create deeplink url for our application which accepts parameters also?
I have tried using
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="my-scheme"
android:host="my.host.name"
android:pathPrefix="/data?name=[text]&token=[text]"></data>
</intent-filter>
but not working.Can anyone please help me if I have to launch my app using
my-scheme://my.host.name/data?name=MY_NAME&token=MY_TOKEN;