android { ... buildTypes { debug { debuggable true ... }
dualDebug {
initWith debug
debuggable true
...
}
}
...
}
在Android Studio的Run/Debug Configurations中,配置需要使用的调试类型,在命令行选项中添加"-DANDROID_DUAL_DEBUG=true"参数。
运行应用程序并使用两个不同的调试器开始调试。
通过以上步骤设置后,在Android Studio的控制台窗口中就能看到双重调试的输出了。