简体   繁体   English

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

[英]Android Studio, ProGuard unable to compute hash of Classes.jar

It has been long years, if ever since I've asked a question at StackOverflow. 自从我在StackOverflow上提出问题以来,已经很长一段时间了。 Although I use it almost of daily basis. 虽然我几乎每天使用它。 Anyway; 无论如何; here it goes: 它在这里:

Recently I've switched to API 23; 最近我转到了API 23; that forced me to use 这迫使我使用

 useLibrary 'org.apache.http.legacy'

as they've thrown out an easy access to the apache library. 因为他们已经抛弃了对apache库的轻松访问。

My project compiles fine and runs fine across all test-devices in debug mode. 我的项目编译良好,并在调试模式下在所有测试设备上运行良好。 Today I need to bring my project to production and ProGuard shouts with 今天我需要将我的项目投入生产并且ProGuard大喊大叫

Unable to compute hash of (..) \\build\\intermediates\\classes-proguard\\release\\classes.jar' 无法计算(..)\\ build \\ intermediates \\ classes-proguard \\ release \\ classes.jar'的哈希值

there are no other errors or warning. 没有其他错误或警告。 There used to be but I got rid of them. 曾经有过,但我摆脱了它们。 Like getting rid of duplicate copies of apache libraries. 就像摆脱apache库的重复副本一样。

Here is my Gradle file: 这是我的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'
    }

}

and here goes the proguard-rules.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.**

I've cleaned my project; 我清理了我的项目; restarted Android Stuio even wiped out the whole Builds directory. 重新启动的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

As Iagreen has noted in his comment; 正如Iagreen在评论中指出的那样; I used the gradlew command line utility to get more detailed errors. 我使用gradlew命令行实用程序来获取更详细的错误。 It turned out there was a problem with JAVA_HOME variable. 结果发现JAVA_HOME变量存在问题。 Solved. 解决了。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 错误:执行…&#39;:app:packageRelease&#39;。&gt;无法计算.. \\ app \\ build \\ intermediates \\ classes-proguard \\ .. \\ release \\ classes.jar的哈希 - Error:Execution… ':app:packageRelease'.> Unable to compute hash of ..\app\build\intermediates\classes-proguard\..\release\classes.jar 错误:任务 &#39;:app:packageRelease&#39; 的执行失败。 &gt; 无法计算 /../AndroidStudioProjects/../classes.jar 的哈希值 - Error:Execution failed for task ':app:packageRelease'. > Unable to compute hash of /../AndroidStudioProjects/../classes.jar 在启用ProGuard的情况下,Gradle构建失败,缺少classes.jar - Gradle Build failed with ProGuard enabled, missing classes.jar 如何以OS独立的方式在Proguard配置中包含rt.jar / classes.jar? - How to include rt.jar/classes.jar in Proguard configuration in an OS independant way? 使用库项目编译android项目失败,缺少classes.jar - Compiling android project with a library project fails with missing classes.jar Proguard for Java混淆,从Windows迁移到Mac,找不到classes.jar - Proguard for java obfuscation, migrate from windows to mac, cannot find classes.jar Proguard混淆在使用Maven的Jenkins构建中失败-无法读取classes.jar - Proguard Obfuscation failed in Jenkins build using Maven - can't read classes.jar 在模块 classes.jar 中发现重复的类 - Duplicated classes found in modules classes.jar Android无法计算哈希错误 - Android Unable to compute hash error Maven导入AAR Classes.jar - Maven Import AAR Classes.jar
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM