If the following error occurs when building the app . . .
org.gradle.api.GradleException: 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
}
}
. . .
Instead of simply adding the android block as suggested by the message, perform a manual lint check as follows
"Analyze" -> "Inspect code .."
Most of the time the problems I had, were that some translation was missing.
No comments :
Post a Comment