安卓studio打包错误Lint found fatal errors while assembling a release target.

今天把一个老项目从eclipse转移到android studio中再打包出现了这个错误
安卓studio打包错误Lint found fatal errors while assembling a release target._第1张图片

按照提示我们在
我们在 app的build android{}中添加

lintOptions {
checkReleaseBuilds false
abortOnError false
}

这样就可以正常打包了

还有一种错误 org.gradle.internal.exceptions.LocationAwareException: Execution failed for task

这个需要在项目的build里两个repositories中加入 然后重新编译过后重新运行就好了

 mavenCentral()
 
 jcenter{url "http://jcenter.bintray.com/"}

你可能感兴趣的:(安卓studio打包错误Lint found fatal errors while assembling a release target.)