Fix the issues identified by lint, or add the following to your build script...

背景:接上一个错误。详细错误如下图:

Fix the issues identified by lint, or add the following to your build script..._第1张图片

红色标注表示的当前编译出错的模块。

绿色范围内的是我们需要添加到build.gradle中的。Android Studio里,每个model下都有一个build.gradle。我们需要把途中绿色范围内的内容添加到各个model下的build.gradle。添加后的build.gradle结构如下(lintOptions块是我们要添加的):

// 其他内容
 
  
android {
    compileSdkVersion 19
    buildToolsVersion '20'
    
    // 其他内容
    
    lintOptions {
        abortOnError false
    }
}
// 其他内容

 
  

你可能感兴趣的:(Android)