打包release出现的错误

错误提示:

Error:Execution failed for task 'xxx'.
> 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
    }
}

解决方案:

    lintOptions {
        //release发布提示错误,可能是某个控件没有缺赋了值,找不到错误所在,所以遏止报错
        checkReleaseBuilds false
        abortOnError false
    }

发布了213 篇原创文章 · 获赞 12 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/a1003434346/article/details/103328418