问题描述:

Caused by: org.gradle.api.GradleException: 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
    }
}

解决方案:

org.gradle.api.GradleException: Lint found fatal errors while assembling a release target_第1张图片

修改上图中的build.gradle,添加如下代码:

lintOptions {        checkReleaseBuilds false        abortOnError false    }

修改后的build.gradle如下图所示:

apply plugin: 'com.android.application'android {    compileSdkVersion 26    defaultConfig {        applicationId "app.kenong.com.hbknclient"        minSdkVersion 15        targetSdkVersion 26        versionCode 1        versionName "1.0"        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"    }    buildTypes {        release {            minifyEnabled false            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'        }    }    packagingOptions {               exclude 'META-INF/DEPENDENCIES'    }    //添加如下配置    lintOptions {        checkReleaseBuilds false        abortOnError false    }}dependencies {    implementation fileTree(include: ['*.jar'], dir: 'libs')    implementation 'com.android.support:appcompat-v7:26.1.0'    implementation 'com.android.support.constraint:constraint-layout:1.0.2'    implementation 'com.android.support:design:26.1.0'    testImplementation 'junit:junit:4.12'    androidTestImplementation 'com.android.support.test:runner:1.0.1'    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'    implementation files('libs/zxing.jar')    implementation files('libs/httpcore-4.4.6.jar')    implementation files('libs/httpclient-4.5.3.jar')    implementation 'com.android.support:cardview-v7:26.1.0'    implementation files('libs/fastjson-1.2.33.jar')    implementation files('libs/commons-logging-1.2.jar')    implementation files('libs/json-lib-2.4-jdk15.jar')}

 

 

更多相关文章

  1. android打开联系人的代码
  2. android webview 7.0 h5调用打电话解决方案
  3. Android 监听WiFi的开关状态实现代码
  4. Android 代码片段---从相册或相机获取图片保存并处理
  5. Android DEX方法超过64K和gradle编译OOM解决方案
  6. android如何用代码实现界面ui
  7. android中如何在代码中直接设置View的layout_weight属性
  8. Android震动代码解读

随机推荐

  1. 在android平台上如何实现H264解码
  2. Android中RelativeLayout各个属性 androi
  3. Android(安卓)Studio 单刷《第一行代码》
  4. android:layout_gravity和android:gravit
  5. Android下SQLite数据库编程学习系列之二-
  6. android 笔记 --- 属性gravity与layout_g
  7. Android属性gravity与layout_gravity的区
  8. 用PHP编写Android应用程序
  9. Android(安卓)Trick 7: 把TextView中的文
  10. Android消息机制浅析——面试总结