我已经为我的应用程序成功生成了签名的apk并将其在我的团队中本地分发。但是突然两天之前,我无法生成签名的apk。
    当我将构建变量更改为“ release”时,gradle调用完成,没有任何错误或警告。但是,当创建签名的apk时,出现以下错误:

Information:Compilation completed with 1 error and 0 warnings in 11 sec
Information:1 error
Information:0 warnings
Error:Gradle: Execution failed for task ':module_name:proguardRelease'.
    > java.io.IOException: Please correct the above warnings first.


build.gradle:

apply plugin: 'android'

android {
    compileSdkVersion 19
    buildToolsVersion '19.1.0'
    defaultConfig {
        minSdkVersion 17
        targetSdkVersion 19
        versionCode 1
        versionName '1.0'
    }
    signingConfigs {
        release {
            storeFile file('release.keystore')
            storePassword '*************'
            keyAlias '*********'
            keyPassword '**************'
        }
    }
    buildTypes {
        release {
            runProguard true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    productFlavors {
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile files('libs/volley.jar')
    compile files('libs/StarIOPort3.1.jar')
    compile files('libs/logentries-android-2.1.2.jar')
    compile 'com.android.support:appcompat-v7:19.1.0'
    compile 'com.android.support:support-v4:19.1.0'
    compile 'com.google.android.gms:play-services:+'
    compile 'com.wrapp.floatlabelededittext:library:0.0.3'
}


在哪里可以看到警告? “消息”中没有警告。也在gradle控制台中。

是什么原因造成的?我怎样才能解决这个问题?

最佳答案

如果使用Windows,请打开一个cmd提示符,并cd到项目的根目录。其中应包含gradlew.bat(由Android Studio自动创建)。尝试运行gradlew.bat clean assembleRelease -d以查看proguard警告。

您将需要fix these proguard warnings before it lets you do a successful build。您可以通过将-dontwarn org.apache.*(或与警告相关的类似内容)添加到项目保护文件release部分中来修复它们。

07-26 08:02