作者:Annia000 | 来源:互联网 | 2023-02-11 14:46
根据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,它没有附加.不知道我怎么能附上它?
1> Goltsev Euge..:
在它下面有一篇很棒的文章和一篇很棒的评论.
简要说明:
1.在你要调试的行之前Debug.waitForDebugger()
.
2.将断点放在需要的地方.
3.运行应用程序(在这种情况下,来自deeplink).
你会看到它被冻结了.
5.在Android Studio中附加调试程序进行处理.
瞧!现在,您已在该断点上激活调试器.
通过这种方式,我能够调试深层链接.