关闭可调式模式android – 您上传了可调试的APK。出于安全原因,您需要先禁用调试功能,然后才能将其发布到Google Play中。将APK上传到Google Play | APK
关闭可调式模式android – 您上传了可调试的APK。出于安全原因,您需要先禁用调试功能,然后才能将其发布到Google Play中。将APK上传到Google Play | APK
我想将我的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中的 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商店?
2.如果我在更改后从项目文件夹(app >> build >> output >> apk >> apk-debug.apk)中获取apk,则可以在Google Play商店中上传?
最佳答案
不要使用调试变体输出!生成版本 APK。您可以在Android Studio中通过选择菜单Build-> Generate Signed APK来做到这一点。或通过执行./gradlew assembleRelease(如果已在构建文件中正确配置了签名)。
声明:本站所有资源,如无特殊说明或标注,所有资源来源于用户上传和网络,任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,请联系万能客服QQ微信同号 416070154删除。