java - Android Studio,ProGuard 无法计算 Classes.jar 的哈希值

标签 java android android-studio proguard

自从我在 StackOverflow 上提问以来,已经过去了很多年。虽然我几乎每天都使用它。 反正;在这里:

最近我切换到 API 23;这迫使我使用

 useLibrary 'org.apache.http.legacy'

因为他们放弃了对 apache 库的轻松访问。

我的项目在 Debug模式下编译良好并在所有测试设备上运行良好。 今天我需要将我的项目投入生产,ProGuard 会发出

Unable to compute hash of (..) \build\intermediates\classes-proguard\release\classes.jar'

没有其他错误或警告。曾经有,但我摆脱了它们。就像摆脱 apache 库的重复副本。

这是我的 Gradle 文件:

buildscript {
    repositories {
        mavenCentral()
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.1'

    }
}

apply plugin: 'com.android.application'

repositories {
    maven { url "http://dl.bintray.com/populov/maven" }
    mavenCentral()
    jcenter()
}


dependencies {
    compile 'com.github.lzyzsd:circleprogress:1.1.0@aar'
    compile('com.fasterxml.jackson.datatype:jackson-datatype-joda:2.0.4') {
        exclude module: 'joda-time'
    }
    compile 'net.danlew:android.joda:2.8.1'
    compile "commons-io:commons-io:+"
    compile 'com.google.android.gms:play-services-location:7.8.0'
    compile 'com.google.android.gms:play-services-nearby:7.8.0'
    compile ('com.google.apis:google-api-services-translate:v2-rev41-1.20.0')
            {
                // Exclude artifacts that the Android SDK/Runtime provides.
                exclude group: 'xpp3', module: 'shared'
                exclude group: 'org.apache.httpcomponents', module: 'httpclient'
                exclude group: 'junit', module: 'junit'
                exclude group: 'com.google.android', module: 'android'
            }
    compile ('com.google.http-client:google-http-client-android:1.18.0-rc')
            {
                // Exclude artifacts that the Android SDK/Runtime provides.
                exclude group: 'xpp3', module: 'shared'
                exclude group: 'org.apache.httpcomponents', module: 'httpclient'
                exclude group: 'junit', module: 'junit'
                exclude group: 'com.google.android', module: 'android'
            }

    compile 'com.theartofdev.edmodo:android-image-cropper:1.0.+'
    compile 'com.viewpagerindicator:library:2.4.1@aar'
    compile 'me.leolin:ShortcutBadger:1.0.10@aar'
    compile 'com.android.support:appcompat-v7:23.0.+'
    compile "com.android.support:support-v4:23.0.+"
    compile "com.android.support:gridlayout-v7:23.0.+"
    compile "com.android.support:cardview-v7:23.0.+"
    compile (
            [group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.4.1'],
            [group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.4.1'],
            [group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.4.1']
    )
    compile 'de.undercouch:bson4jackson:2.4.0'

}

// The sample build uses multiple directories to
// keep boilerplate and common code separate from
// the main sample code.
List<String> dirs = [
    'main',     // main sample code; look here for the interesting stuff.
    'common',   // components that are reused by multiple samples
    'template'] // boilerplate code that is generated by the sample template process

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.0"
    useLibrary 'org.apache.http.legacy'
    defaultConfig {
        minSdkVersion 10
        targetSdkVersion 23
    }
    buildTypes {
        debug {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'

        }
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    sourceSets {
        main {
            dirs.each { dir ->
                java.srcDirs "src/${dir}/java"
                res.srcDirs "src/${dir}/res"
            }
        }
        androidTest.setRoot('tests')
        androidTest.java.srcDirs = ['tests/src']

    }
    packagingOptions {
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
    }

}

这是 proguard-rules.txt

# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\android-sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# Only obfuscate


-dontshrink

# Keep source file and line numbers for better crash logs
-keepattributes SourceFile,LineNumberTable

# Avoid throws declarations getting removed from retrofit service definitions
-keepattributes Exceptions

# Allow obfuscation of android.support.v7.internal.view.menu.**
# to avoid problem on Samsung 4.2.2 devices with appcompat v21
# see https://code.google.com/p/android/issues/detail?id=78377
-keep class !android.support.v7.internal.view.menu.** { *; }

# Amazon IAP library has some missing stuff
-dontwarn com.amazon.**

# ButterKnife uses some annotations not available on Android.
-dontwarn butterknife.internal.**
# Prevent ButterKnife annotations from getting renamed.
-keepnames class * { @butterknife.InjectView *;}

# Eventbus methods can not be renamed.
-keepclassmembers class ** {
    public void onEvent*(**);
}

# Gson uses generic type information stored in a class file when working with fields. Proguard
# removes such information by default, so configure it to keep all of it.
-keepattributes Signature
# Gson specific classes
-dontwarn sun.misc.Unsafe

# joda-time has some annotations we don't care about.
-dontwarn org.joda.convert.**

# OkHttp has some internal stuff not available on Android.
-dontwarn com.squareup.okhttp.internal.**

# Okio has some stuff not available on Android.
-dontwarn java.nio.file.*
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement

# Oltu has some stuff not available on Android (javax.servlet), we don't use (slf4j)
# and not included because it is available on Android (json).
-dontwarn javax.servlet.http.**
-dontwarn org.slf4j.**
-dontwarn org.json.**
-dontwarn com.fasterxml.**

# Retrofit has some optional dependencies we don't use.
-dontwarn rx.**
-dontwarn retrofit.appengine.**

我已经清理了我的项目;重启 Android Stuio 甚至清除了整个 Builds 目录。

Result:
Information:Gradle tasks [:Application:assembleRelease]
:Application:preBuild UP-TO-DATE
:Application:preReleaseBuild UP-TO-DATE
:Application:checkReleaseManifest
:Application:preDebugBuild UP-TO-DATE
:Application:prepareComAndroidSupportAppcompatV72300Library UP-TO-DATE
:Application:prepareComAndroidSupportCardviewV72300Library UP-TO-DATE
:Application:prepareComAndroidSupportGridlayoutV72300Library UP-TO-DATE
:Application:prepareComAndroidSupportSupportV42300Library UP-TO-DATE
:Application:prepareComGithubLzyzsdCircleprogress110Library UP-TO-DATE
:Application:prepareComGoogleAndroidGmsPlayServicesBase780Library UP-TO-DATE
:Application:prepareComGoogleAndroidGmsPlayServicesLocation780Library UP-TO-DATE
:Application:prepareComGoogleAndroidGmsPlayServicesMaps780Library UP-TO-DATE
:Application:prepareComGoogleAndroidGmsPlayServicesNearby780Library UP-TO-DATE
:Application:prepareComTheartofdevEdmodoAndroidImageCropper104Library UP-TO-DATE
:Application:prepareComViewpagerindicatorLibrary241Library UP-TO-DATE
:Application:prepareMeLeolinShortcutBadger1010Library UP-TO-DATE
:Application:prepareNetDanlewAndroidJoda281Library UP-TO-DATE
:Application:prepareReleaseDependencies
:Application:compileReleaseAidl UP-TO-DATE
:Application:compileReleaseRenderscript UP-TO-DATE
:Application:generateReleaseBuildConfig UP-TO-DATE
:Application:generateReleaseAssets UP-TO-DATE
:Application:mergeReleaseAssets UP-TO-DATE
:Application:generateReleaseResValues UP-TO-DATE
:Application:generateReleaseResources UP-TO-DATE
:Application:mergeReleaseResources UP-TO-DATE
:Application:processReleaseManifest UP-TO-DATE
:Application:processReleaseResources UP-TO-DATE
:Application:generateReleaseSources UP-TO-DATE
:Application:processReleaseJavaRes UP-TO-DATE
:Application:compileReleaseJavaWithJavac UP-TO-DATE
:Application:compileReleaseNdk UP-TO-DATE
:Application:compileReleaseSources UP-TO-DATE
:Application:lintVitalRelease
:Application:proguardRelease UP-TO-DATE
:Application:dexRelease UP-TO-DATE
:Application:validateExternalOverrideSigning
:Application:packageRelease FAILED
Error:Execution failed for task ':Application:packageRelease'.
> Unable to compute hash of C:\Users\rafal_000\Projekty\Application\build\intermediates\classes-proguard\release\classes.jar
Information:BUILD FAILED
Information:Total time: 6.694 secs
Information:1 error
Information:0 warnings
Information:See complete output in console

最佳答案

正如 Iagreen 在他的评论中指出的那样;我使用 gradlew 命令行实用程序来获取更详细的错误。原来 JAVA_HOME 变量有问题。已解决。

关于java - Android Studio,ProGuard 无法计算 Classes.jar 的哈希值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33008500/

相关文章:

Java Swing GUI 隐藏输入

java - 如何使用hibernate动态添加列

java - Httpclient-4.5.2.jar setEntity 显示 "cannot find symbol"(JAVA - netbeans 8)

android - 如何在android webview中播放widevine drm内容

java - 执行 AsyncTask 时出现 NoClassDefFoundError

java - 在方法外部使用变量值

java - 如果使用 ducusign API 通过模板发送嵌入式签名,则没有签名工具

java - fragment 中绘图应用程序的自定义 View InflateException

android - 我不明白为什么我们需要将 Android sdk 导入到项目中

android - Guava库重复录入错误