我目前正在开发Ionic2应用程序。我可以使用chrome:// inspect debugging来调试应用程序。
有没有办法在app的发布apk中禁用此调试。我正在使用Android studio来构建已签名的apk以供发布。
答案 0 :(得分:2)
在AndroidManifest.xml
android:debuggable="true"
元素中应该有一个<application>
属性。如果你删除它并构建应用程序,它就不应再可调试了。
我认为当您使用命令ionic build android --release
构建Android应用程序时,它不会将android:debuggable属性添加到清单xml。