1,错误代码: 
`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 

}`

解决方法: 
在app的build.gradle里的android{}中添加如下代码,然后再次运行Generate Signed Apk。例如:

android{    lintOptions {        checkReleaseBuilds false        abortOnError false    }}

更多相关文章

  1. Android(安卓)Activity设置全屏
  2. Android(安卓)签名失败 Lint found fatal errors while assembli
  3. android studio Error:Unable to start the daemon process
  4. android studio Error:Unable to start the daemon process
  5. Android方法的传递值及其改变
  6. [置顶] Android(安卓)[Dex Loader] Unable to execute dex:
  7. android PopupWindow例程
  8. Android(安卓)发布项目到私服Nexus仓库
  9. 编译Android时,添加或者删除system.img中第三方apk、更改Android

随机推荐

  1. 我的android 第4天 - Dialog
  2. Android(安卓)网络(一) HTTP协议
  3. android Intent机制详解
  4. Android(安卓)- 文件读写操作 总结
  5. android之用户定位(一)
  6. Android(安卓)的实现TextView中文字链接
  7. Android中的五大存储
  8. 引用 Android上dip、dp、px、sp等单位说
  9. Android(安卓)中屏幕点击事件的实现
  10. Android(安卓)系统服务管家servicemanage