我必须在清单中添加什么才能在实际设备上调试 Android 应用程序?

发布于 2024-08-24 01:24:24 字数 52 浏览 4 评论 0原文

我必须在清单中添加什么样的权限/标志才能在实际的 Android 设备上调试我的应用程序?

What kind of permission/Flag do I have to add to the manifest to debug my application on an actual Android device?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

断爱 2024-08-31 01:24:24

android:debuggable="true" 添加到 元素

更多信息 此处

Add android:debuggable="true" to the <application> element

More info here.

梦里°也失望 2024-08-31 01:24:24

您应该创建一个调试特定的清单文件(通常在 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.

爱本泡沫多脆弱 2024-08-31 01:24:24

问题是您可能安装了不可调试的实时应用程序,并且您正在使用可调试应用程序覆盖。因此,卸载不可调试的应用程序并安装您的应用程序。我会工作。我尝试过这个并为我工作。

在尝试此操作之前,请确保您不在发布版本版本中,并且在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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文