出现错误:任务“:app:lintVitalRelease”执行失败

问题描述 投票:0回答:4

为什么在 Kotlin 中生成签名的 Apk 时出现此错误?有知道解决办法的请回复一下。

Logcat 错误:

Execution failed for task ':app:lintVitalRelease'.
Lint found fatal errors while assembling a release target.

我正在添加 build.gradle 文件。我不知道我的代码有什么问题,所以请任何知道解决方案的人回答。 构建.gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

apply plugin: 'kotlin-kapt'

android {
    compileSdkVersion 29
    defaultConfig {
        applicationId "com.testing.app"
        minSdkVersion 21
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:support-v4:27.1.1'
    testImplementation 'junit:junit:4.12'
    implementation "android.arch.persistence.room:runtime:1.1.1"
    kapt "android.arch.persistence.room:compiler:1.1.1"
    implementation "android.arch.lifecycle:livedata:1.1.1"
    kapt "android.arch.lifecycle:compiler:1.1.1"
    implementation 'com.karumi:dexter:5.0.0'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation "org.jetbrains.anko:anko:$anko_version"

    //Anko Commons

    implementation "org.jetbrains.anko:anko-commons:$anko_version"
    implementation "org.jetbrains.anko:anko-appcompat-v7-commons:$anko_version"
    implementation 'com.android.support:recyclerview-v7:27.1.1'
    implementation 'com.android.support:cardview-v7:27.1.1'
    implementation 'com.github.medyo:android-about-page:1.2.2'
    implementation 'com.google.firebase:firebase-ml-vision-image-label-model:17.0.2'
    implementation "com.google.firebase:firebase-ml-model-interpreter:17.0.3"
    implementation "com.google.firebase:firebase-ml-vision:19.0.2"
    implementation 'com.google.firebase:firebase-core:16.0.7'
    implementation 'com.google.firebase:firebase-crash:16.2.1'


}

apply plugin: 'com.google.gms.google-services'
android android-studio kotlin gradle build
4个回答
17
投票

我遇到了这个问题并通过添加解决了它:

lintOptions { 

    checkReleaseBuilds false

}

到我的 build.gradle 文件在 android{ } 部分。


1
投票
    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
    }
}

0
投票

lintOptions 已弃用

使用

   lint {
    checkReleaseBuilds = false
}

在 Kotlin DSL (build.gradle.kts) 模式下


0
投票

MacOS M2 芯片。

使用 React Native 制作的项目。

解决方案:

  <lintoptions
      abortOnError="false"
      absolute paths = "true"
      checkReleaseBuilds="false"
      explainIssues="true"/>
© www.soinside.com 2019 - 2024. All rights reserved.