Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

You uploaded a debuggable APK. For security reasons you need to disable debugging before it can be published in Google Play-Upload apk to google play

I Want to upload my apk to google play store.but its Show me error like this.

**You uploaded a debuggable APK. For security reasons you need to disable debugging before it can be published in Google Play** 

and than i searched for this and i receive suggetion to change the android:debuggable="false" in manifast.xml.

I changed like this

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.is the enough for upload Apk to google play store?

2.if i pick up apk from my project folder(app>>build>>output>>apk>>apk-debug.apk) after this change than after it will able to upload in google play store??

like image 336
RushDroid Avatar asked Aug 28 '15 05:08

RushDroid


People also ask

How do I enable debug on apk?

However, you need to make sure you're using an APK with debugging enabled. To start debugging an APK, click Profile or debug APK from the Android Studio Welcome screen. Or, if you already have a project open, click File > Profile or Debug APK from the menu bar.

What is release debug apk?

Major differences are the debug apk and the release apk: For debug builds the apk will be signed with the default debug signing keys with debug flag enabled. For release apk you will have to explicitly specify the apk to sign with and the debug flag will be turned off so that it cannot be debugged.


1 Answers

Don't use the debug variant output! Build a release apk. You can do that in Android Studio by going to the menu Build -> Generate Signed APK. Or by executing ./gradlew assembleRelease if you have properly configured signing in the build file.

like image 96
niqueco Avatar answered Oct 20 '22 00:10

niqueco