如何为 Deep Link Android App 触发调试启动附加调试器?
How to attach debugger for Deep Link Android App trigger debug launch?
根据 https://developer.android.com/training/app-indexing/deep-linking.html 中的帖子,我们可以使用以下命令启动深度链接应用启动
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,它没有附加。想知道我怎样才能把它附上?
您要么必须在启动后手动附加它,要么已经拥有该应用程序 运行 并附加然后启动您的深层链接。 phone 无法知道它在启动应用程序时需要附加到连接的 PC 上的调试器。
下面有一个很棒的article和一个很棒的评论
简要说明:
1. 在你要调试的行之前放 Debug.waitForDebugger()
.
2.在需要的地方设置断点。
3. 运行 应用程序(在本例中来自深度链接)。
4. 你会看到它被冻结了。
5. 在 Android Studio 中将调试器附加到进程。
6. 瞧!现在您已在该断点上激活了调试器。
通过这种方式,我能够调试深层链接。
根据 https://developer.android.com/training/app-indexing/deep-linking.html 中的帖子,我们可以使用以下命令启动深度链接应用启动
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,它没有附加。想知道我怎样才能把它附上?
您要么必须在启动后手动附加它,要么已经拥有该应用程序 运行 并附加然后启动您的深层链接。 phone 无法知道它在启动应用程序时需要附加到连接的 PC 上的调试器。
下面有一个很棒的article和一个很棒的评论
简要说明:
1. 在你要调试的行之前放 Debug.waitForDebugger()
.
2.在需要的地方设置断点。
3. 运行 应用程序(在本例中来自深度链接)。
4. 你会看到它被冻结了。
5. 在 Android Studio 中将调试器附加到进程。
6. 瞧!现在您已在该断点上激活了调试器。
通过这种方式,我能够调试深层链接。