I\'m trying to deep link my app and have implemented the following in my AndroidManifest.xml to open the proper activity.
Just encode your url parameters and it will work. It might be google's parsing bug.
Before:
adb shell am start -W -a android.intent.action.VIEW -d "myCustomScheme://myHost?key=category_parent_id&value=92&title=test" com.myApp.android
After:
adb shell am start -W -a android.intent.action.VIEW -d "myCustomScheme://myHost?key%3Dcategory_parent_id%26value%3D92%26title%3Dtest" com.myApp.android