此問題發生在編譯為 release 版本時,出現錯誤提示如下:
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 } } ...
按照上述提示添加后,重新編譯還遇到這個提示,請嘗試按照以下方法解決:
android { buildTypes { release { //在這里添加: lintOptions { checkReleaseBuilds false abortOnError false } minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } }