記錄一次版本打包錯誤

Error:Execution failed for task ‘:app:lintVitalRelease’.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 }

解決方案:

在build.gradle的android中添加

lintOptions {
    checkReleaseBuilds false
    abortOnError false
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章