I created an application on Android and I generated a first APK signed through Android Studio and I have a .jks file, once I signed the APK I modified some things in the code and when wanting to re-generate the signed APK I skipped the next error I do not know how to solve and I can not get a new APK:
Lint found fatal errors while assembling a release target.
To proceed, either fix the issues identified by lint, or modify your build script as follows:
...
android {
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}
...
Does anyone know what is going on? Thanks.