13

根据https://developer.android.com/training/app-indexing/deep-linking.html中发布的内容,我们可以使用以下命令启动 deeplink 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,它没有连接。想知道我怎么能把它连接起来?

4

2 回答 2

28

下面有一篇很棒的文章和很棒的评论。

简要说明:
1. 在要调试的行之前放Debug.waitForDebugger().
2. 在需要的地方放置断点。
3. 运行应用程序(在本例中来自 deeplink)。
4. 你会看到它被冻结了。
5. 在 Android Studio 中附加调试器到进程。
6.瞧!现在您已经在该断点上激活了调试器。

通过这种方式,我能够调试深度链接。

于 2018-07-06T15:09:49.837 回答
4

您要么必须在启动后手动附加它,要么已经运行并附加了应用程序,然后启动您的深层链接。手机在启动应用程序时无法知道它需要连接到连接的 PC 上的调试器。

于 2017-02-18T03:05:43.673 回答