我想上传我的apk到google play store.but它显示我这样的错误。
**You uploaded a debuggable APK. For security reasons you need to disable debugging before it can be published in Google Play**
而且我搜索了这个,我收到了改变的建议 机器人:可调试=“假” 在manifast.xml中。
我这样改了
manifast.xml
<application
android:allowBackup="true"
android:debuggable="false"
android:icon="@mipmap/ic_launcher"
android:label="Concall"
android:screenOrientation="portrait"
android:theme="@style/AppTheme" >
在我的build.grable(模块)
android {
buildTypes {
debug {
debuggable false
}
}
1.是否足以将Apk上传到谷歌游戏商店?
2.如果我从我的项目文件夹(app >> build >>输出>> apk >> apk-debug.apk)中获取apk,此更改后它将能够在谷歌播放商店上传?
我需要知道这件事 提前致谢。