根据https://developer.android.com/training/app-indexing/deep-linking.html中的帖子,我们可以使用以下命令启动深层链接App Launch
adb shell am start -W -a android.intent.action.VIEW -d "example://gizmos" com.example.android
但是如果我想开始调试,我可以添加-D
,如下所示
adb shell am start -W -a android.intent.action.VIEW -d "example://gizmos" com.example.android -D
我的应用程序已经启动,但它已经存在了
Waiting For Debugger
Application Android System (process system:ui) is waiting for the debugger to attach
从那里,我检查我的Android Studio,它没有附加。不知道怎么能把它附上?
答案 0 :(得分:9)
下面有一个很棒的article和一个很好的评论。
简短地:
1.将要调试的行放在Debug.waitForDebugger()
之前。
2.将断点放在需要的地方。
3.运行应用程序(在这种情况下,从Deeplink运行)。
4.您将看到它被冻结。
5.在Android Studio中,将调试器附加到进程中。
6.瞧!现在,您已经在该断点上激活了调试器。
通过这种方式,我可以调试深层链接。
答案 1 :(得分:3)
您必须在启动后手动附加它,或者已经运行并附加了应用程序,然后启动您的深层链接。电话启动应用程序时无法知道它需要连接到连接的PC上的调试器。