The same issue was posted here but the answer given didn\'t work for me. I\'ve uploaded to the store before and now I can\'t update my app to include some bug fixes. Wheneve
It seems you now have to explicitly set android:debuggable=false. (At least with the Android Studio 0.3.6.)
Debuggable is a property of the application tag. (Not the manifest tag.)
If you've added this attribute properly and Google Play still rejects your APK, try modifying build.gradle to set your own key for debug
signingConfigs {
debug {
storeFile file("my-keystore-file.jks")
storePassword "my-password"
keyAlias "my-alias"
keyPassword "my-password"
}
}