根据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,它没有连接。想知道我怎么能把它连接起来?