我有一个问题,包括混淆项目中的 instabug 库(所有其他第三方库都可以)。
我得到的错误如下(我知道关于此错误消息还有其他问题,但我的问题仅出现在 instabug 中,并且没有任何建议的解决方案适用)。
错误:任务“:app:packageRelease”执行失败。
无法计算 C:\Projects\ProguardExample\app\build\intermediates\classes-proguard\release\classes.jar 的哈希
尝试解决问题时,我在配置文件中添加了一些语句。
-dontwarn android.support.**
-keep class android.support.v7.** { *; }
-keep interface android.support.v7.** { *; }
-keep class com.google.android.gms.** { *; }
-dontwarn com.google.android.gms.**
-keep class com.instabug.** { *; }
// 这里我也尝试更改 proguard-project.txt
和我的 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
这是我的 build.gradle 的样子。
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile 'com.android.support:appcompat-v7:23.0.1'
//compile 'com.github.danieltwagner:android-async-logger:0.1.0@aar'
compile 'com.instabug.library:instabugsupport:1+'
// compile 'org.apache.commons:commons-collections4:4.0'
}
如果您能指导我解决这个问题,我将不胜感激。即使您不知道它的解决方案,但怀疑在哪个领域,我应该研究找到它,请与我分享:)