I want to upload my apk to google play store.but it Show me such an error.
**You uploaded a debuggable APK. For security reasons you need to disable debugging before it can be published in Google Play**
and I searched for it and I get a recommendation to change android: debuggable = "false" in manifestast.xml.
I have changed so much
manifast.xml
<application android:allowBackup="true" android:debuggable="false" android:icon="@mipmap/ic_launcher" android:label="Concall" android:screenOrientation="portrait" android:theme="@style/AppTheme" >
and in my build.grable (Module)
android { buildTypes { debug { debuggable false } }
1.s enough to download Apk to Google Play Store?
2.if I take apk from the project folder (app → build → output → apk → apk-debug.apk) after this change, than after it can upload to the Google Play Store
I need to know this thing. Thanks in advance.
android upload google-play apk
Rushdroid
source share