当前位置: 首页 > 面试题库 >

错误:任务':app:packageRelease'的执行失败。>无法计算/../AndroidStudioProjects/../classes.jar的哈希

吕永寿
2023-03-14
问题内容

我正在尝试在Android应用程序上进行“发布”构建,并且不断出现以下错误:

无法计算/../AndroidStudioProjects/../classes.jar的哈希

然后,当我在该目录中查找“ classes.jar”时,该文件不存在。我是否必须使用gradle任务自己创建此文件

这里有一些关于proguard的信息,但是除了“无法计算哈希…”之外,它没有提供太多有用的信息。

这是我的gradle.build文件:

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"
    defaultConfig {
        applicationId "com.example"
        minSdkVersion 11
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        debug {
            buildConfigField "String", "SERVER_URL", '"http://10.0.2.2:3000"'
        }
        release {
            buildConfigField "String", "SERVER_URL", '"https://example.com"'
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        debugRelease {
            buildConfigField "String", "SERVER_URL", '"https://example.com"'
            debuggable true
            jniDebuggable false
            renderscriptDebuggable false
            minifyEnabled false
            zipAlignEnabled true
        }
    }
    productFlavors {
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.1.1'
    compile 'com.android.support:recyclerview-v7:22.1.1'
    compile 'com.android.support:cardview-v7:22.1.1'
    compile 'com.google.android.gms:play-services-gcm:7.5.0'
}

如果有人可以帮助我调试此问题,那就太好了。


问题答案:

我解决了这个问题:

打开proguard-rules.pro项目的,然后将其添加到底部:

-dontwarn java.nio.file.Files
-dontwarn java.nio.file.Path
-dontwarn java.nio.file.OpenOption
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement

基本上我是如何解决的,这是我试图在“发布”模式下运行我的应用程序,并在这里遇到了很多与此人相似的错误:https
:
//github.com/square/okio/issues/144

我几乎按照他说的去解决了。

希望这可以帮助其他人生成他们的APK!



 类似资料: