383/5000 I have an app that gives me compilation errors when I change it to release mode to upload it to the play store
I\'ve tried analyzing-inspecting code and I d
For me i checked the errors in the xml and html files in /APPLICATION/app/build/reports Then i fixed all i could fix and for the rest i suppressed them by adding to my build.gradle the code below:
android {
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
This prevented android studio from aborting the build because of the remaining errors