我必须在清单中添加什么才能在实际设备上调试 Android 应用程序?
我必须在清单中添加什么样的权限/标志才能在实际的 Android 设备上调试我的应用程序?
What kind of permission/Flag do I have to add to the manifest to debug my application on an actual Android device?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将
android:debuggable="true"
添加到
元素更多信息 此处。
Add
android:debuggable="true"
to the<application>
elementMore info here.
您应该创建一个调试特定的清单文件(通常在 src/debug/AndroidManifest.xml 中)。
避免错误:“避免对调试模式进行硬编码。”
如果您直接通过 IDE 运行/调试应用程序,它会自动使用 android:debuggable="true" 标志构建。
You shold create a debug specific manifest file (typically in src/debug/AndroidManifest.xml).
To avoid error: "Avoid hardcoding the debug mode."
If you run/debug application directly throuh IDE, it is automatically build with android:debuggable="true" flag.
问题是您可能安装了不可调试的实时应用程序,并且您正在使用可调试应用程序覆盖。因此,卸载不可调试的应用程序并安装您的应用程序。我会工作。我尝试过这个并为我工作。
在尝试此操作之前,请确保您不在发布版本版本中,并且在app->build.gradle debuggable true中
The issue is might be you have installed the live app which is not debuggable and you are overwriting with debuggable app. So, uninstall the app which is not debuggable and install your app. I will work. I tried this and worked for me.
Before trying this, make sure you are not in release build variant and in app->build.gradle debuggable true