I'm stumbling into the second weird problem within a very short time. Not sure what's going on right now but I have to fix this.
I have an Android Studio Project and in the past I already generated APKs (debug and release ones). Now, I cannot build APKs if debuggable is set to true.
When I modify "release" for debuggable true, it builds but I cannot upload it to the play store:
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
debuggable true
}
}
Now, as I desperately need to upload this update to the play store, which only lets me do that if this very flag is set to false. I'm running version 1.4 on a Mac OSX 10.11
Any help is much appreciated!