【发布时间】:2015-11-22 16:42:28
【问题描述】:
我想将我的 apk 上传到 google play store。但是它的 Show me 错误是这样的。
**You uploaded a debuggable APK. For security reasons you need to disable debugging before it can be published in Google Play**
然后我搜索了这个,我收到了更改 manifast.xml 中的 android:debuggable="false" 的建议。
我变成了这样
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(Module) 中
android {
buildTypes {
debug {
debuggable false
}
}
1.上传Apk到google play store就够了吗?
2.如果我在此更改后从我的项目文件夹(app>>build>>output>>apk>>apk-debug.apk)中获取 apk,而不是在它能够上传到 google play store 之后??
【问题讨论】:
-
我正在投票结束这个问题,因为找到了正确的答案
标签: android upload google-play apk