Android Deep Linking with multiple query parameters

后端 未结 4 2033
别跟我提以往
别跟我提以往 2020-12-08 01:49

I\'m trying to deep link my app and have implemented the following in my AndroidManifest.xml to open the proper activity.



        
4条回答
  •  粉色の甜心
    2020-12-08 02:37

    You can wrap the shell command with simple quotes (to avoid modifying the uri content):

    adb shell 'am start -d "myCustomScheme://myHost?key=category_parent_id&value=92&title=test"'
    

提交回复
热议问题