gpt4 book ai didi

java - 错误 :Execution failed for task ':app:packageRelease' . > 无法计算/../AndroidStudioProjects/../classes.jar 的哈希

转载 作者:IT老高 更新时间:2023-10-28 20:34:50 27 4
gpt4 key购买 nike

我正在尝试在 Android 应用上进行“发布”构建,但我不断收到以下错误:

Unable to compute hash of /../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 规则,每个修复都会有所不同。首先,通过检查 classes-proguard 目录是否在错误消息中的某个位置来确认这是一个 Proguard 问题,如下所示:Unable to compute hash of/Users/Documents/projectX/app/build/intermediates/classes- proguard/release/classes.jar

这意味着它是由早期的 Proguard 错误引起的,因此您需要在 Messages 窗口或 Gradle Console 窗口中向上滚动并检查您收到的警告或错误。举个例子,在我当前的项目中,Square 的 Picasso 库导致了错误:警告:com.squareup.picasso.OkHttpDownloader:找不到引用的类 com.squareup.okhttp.OkHttpClient。我刚刚添加了 -dontwarn com.squareup.okhttp.** 以忽略警告,该应用程序仍然正常工作。

很多 Proguard 错误都是关于某个类的警告,因此只需为项目中导致它的任何类添加 -dontwarn 即可。

我知道 StackOverflow 方式只是谷歌错误消息,复制并粘贴最佳答案并希望最好,但在这里你必须理解它并为你找出 proguard 规则!

关于java - 错误 :Execution failed for task ':app:packageRelease' . > 无法计算/../AndroidStudioProjects/../classes.jar 的哈希,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31643339/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com