android studio 编译时,忽略 lint 检查
问题
在 Android Studio 打包 apk 时候,老是报告 lint 问题,build 失败。
我不care这些问题呀,让我生成一个 apk !
解决
在 app/build.gradle 的 android {…} 中添加
1 2 3 4 | lintOptions { checkReleaseBuilds false abortOnError false } |
例如:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | android { compileSdkVersion 21 buildToolsVersion '25.0.0' defaultConfig { applicationId "com.qa.swatapk.rt" minSdkVersion 11 targetSdkVersion 21 } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } lintOptions { checkReleaseBuilds false abortOnError false } } |