关闭可调式模式android – 您上传了可调试的APK。出于安全原因,您需要先禁用调试功能,然后才能将其发布到Google Play中。将APK上传到Google Play | APK

关闭可调式模式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(如果已在构建文件中正确配置了签名)。