org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':app:lintVitalRelease'
这个问题一般是 release 版本的时候才会出现,解决这个问题的办法其实报错的提示里面已经说了:
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
}
}
就是在 build.gradle
里面的 android
条目下面增加 lintOptions
即可 release 成功。
参考:
android/flutter 打包报错 ':app:lintVitalRelease'
https://zhuanlan.zhihu.com/p/80453995