当前位置: 首页 > 知识库问答 >
问题:

尝试生成签名Apk时发生Gradle生成错误

耿玄裳
2023-03-14

大约34小时前,我生成了一个签名的apk,但现在,我无法生成一个签名的apk,我不知道如何解决这个问题。请帮忙

这是我的输出消息

>

  • 错误:任务“:app:LintVitalRelease”执行失败。

    尝试:使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获取更多日志输出。使用--scan运行以获得完整的见解。

    这是我的Build.Gradle(应用程序)

    apply plugin: 'com.android.application'
    apply plugin: 'kotlin-android'
    apply plugin: 'io.fabric'
    
    android {
        compileSdkVersion 26
        buildToolsVersion '27.0.3'
        defaultConfig {
            applicationId "com.myapp……"
            minSdkVersion 17
            targetSdkVersion 26
            versionCode 5
            versionName "5.0"
        }
        buildTypes {
            release {
                minifyEnabled true
                shrinkResources true
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
        packagingOptions {
            exclude 'META-INF/NOTICE'
            exclude 'META-INF/LICENSE'
        }
    }
    
    dependencies {
        implementation fileTree(include: ['*.jar'], dir: 'libs')
        implementation "com.android.support:appcompat-v7:$support_version"
        implementation "com.android.support:design:$support_version"
        implementation "com.android.support:support-v4:$support_version"
        implementation "com.android.support:cardview-v7:$support_version"
        implementation "com.android.support:recyclerview-v7:$support_version"
        implementation "com.google.firebase:firebase-core:$firebase_version"
        implementation "com.google.firebase:firebase-messaging:$firebase_version"
        implementation "com.google.firebase:firebase-ads:$firebase_version"
        implementation 'com.crashlytics.sdk.android:crashlytics:2.9.1'
        implementation "com.google.firebase:firebase-perf:$firebase_version"
        implementation 'io.github.yavski:fab-speed-dial:1.0.6'
        implementation 'com.google.code.gson:gson:2.8.0'
        implementation 'com.codemybrainsout.rating:ratingdialog:1.0.8'
        implementation 'com.android.billingclient:billing:1.0'
        implementation 'com.android.support.constraint:constraint-layout:1.0.2'
        implementation 'org.jsoup:jsoup:1.10.3'
        testImplementation 'junit:junit:4.12'
        implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    }
    apply plugin: 'com.google.gms.google-services'
    
    apply plugin: 'kotlin-android-extensions'
    
    // Top-level build file where you can add configuration options common to all sub-projects/modules.
    
    buildscript {
        ext.kotlin_version = '1.2.10'
        ext.support_version = '26.1.0'
        ext.firebase_version = '12.0.1'
        repositories {
            jcenter()
            google()
            maven {
                url 'https://maven.fabric.io/public'
            }
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:3.1.0'
            classpath 'io.fabric.tools:gradle:1.25.1'
    
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
            classpath 'com.google.gms:google-services:3.1.2'
            classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        }
    }
    
    allprojects {
        repositories {
            jcenter()
            google()
        }
    }
    
    task clean(type: Delete) {
        delete rootProject.buildDir
    }
    
  • 共有1个答案

    胡越
    2023-03-14

    这是一个lintValidRelease问题。您需要在Gradle文件中添加lintOptions。

    android {
    ..
         lintOptions {
    
            checkReleaseBuilds false
    
        }
    }
    
     类似资料:
    • 我试图为我的应用程序生成一个签名的APK,但是,我得到了下面的两个错误消息。请看我的Android宣言文件。 我收到以下两条错误消息,请有人帮助我,因为我正在努力生成一个唱歌的APK。我能够构建我的应用程序,但是,在尝试创建API时,我总是收到下面指示的两条错误消息。 错误:任务“:移动:转换类与DexForRelease”的执行失败。 com.android.build.api.transfor

    • 我尝试在google play上上传我的apk,但遇到一条错误消息:“您上传了一个可调试的apk。出于安全考虑,您需要禁用调试,然后才能在google play中发布它。了解有关可调试apk的更多信息。” 然后我在清单中写入并再次尝试。我遇到了同样的错误,所以我将模块中的构建变体设置为释放,并再次尝试生成一个apk,但这次,生成了这个错误:

    • 我正在尝试构建我的第一个签名APK以供发布,但出现了一些错误。看起来效果很好,但现在我就是无法生成APK。我做了研究,但什么也没找到。 Gradle版本:4.8,Android插件版本3.1.4,这是我的应用程序Gradle屏幕截图:link 这来自assembleDebug: 我曾经有过布局和不赞成使用的功能的其他问题,但我解决了它。其中一个就这样消失了,但我什么也没做:-) 我已经尝试过的事情

    • 我正在尝试生成签名APK。但由于生成时的lint错误而无法生成。我检查了我的lint报告,它在我的XML文件中显示错误。 林特在组装释放目标时发现致命错误。要继续,要么修复lint识别的问题,要么修改构建脚本,如下所示:...android{lintOptions{checkReleaseBuilds false//或者,如果您愿意,您可以继续检查版本构建中的错误,//但即使发现错误,也可以继续构

    • 问题内容: 我试图将我的apk上传到Google Play上,并遇到错误消息:“您上传了可调试的APK。出于安全原因,您需要先禁用调试,然后才能在Google Play中发布。了解有关可调试的APK的更多信息。” 然后我在清单中写信,然后再试一次。我遇到了相同的错误,因此我将模块的build变量设置为release,并尝试再次生成apk,但是这次生成了此错误: 问题答案: 我不建议您关闭皮棉检查,