I am trying to test android deep link urls through adb to launch my app

前端 未结 11 689
孤街浪徒
孤街浪徒 2021-01-30 10:07

When I type the command in adb:

./adb shell am start -W -a android.intent.action.VIEW -d \"example:gizmos\" com.myapp

I get this error:

11条回答
  •  执念已碎
    2021-01-30 10:42

    The command

    adb shell dumpsys package domain-preferred-apps
    

    is also very helpful to print all active deep link handlers known to the system. If your app is missing here, there's obviously something wrong with your deep link setup.

提交回复
热议问题