gpt4 book ai didi

android - 错误 :Execution failed for task ':app:packageRelease' . > java.io.IOException:无法读取 zip 文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:36:23 28 4
gpt4 key购买 nike

当我尝试构建发布版本时出现以下错误。我正在使用 android studio 2.3 。我在下面添加了我的 gradle 和 proguard 规则文件,我将在 mac os X 上使用 mac

Error:Execution failed for task ':app:packageRelease'.
> java.io.IOException: Failed to read zip file '/Users/username/Documents/Android Projects/Project Name/app/build/intermediates/transforms/proguard/release/jars/3/1f/main.jar'.

混淆规则文件

-keepclassmembers class * {
@android.webkit.JavascriptInterface <methods>;
}

-keepattributes JavascriptInterface
-keepattributes *Annotation*

-dontwarn com.razorpay.**
-keep class com.razorpay.** {*;}

-optimizations !method/inlining/*

-keepclasseswithmembers class * {
public void onPayment*(...);
}

-keep @interface butterknife.*

-keepclasseswithmembers class * {
@butterknife.* <fields>;
}

-keepclasseswithmembers class * {
@butterknife.* <methods>;
}

-keepclasseswithmembers class * {
@butterknife.On* <methods>;
}

-keep class **$$ViewInjector {
public static void inject(...);
public static void reset(...);
}

-keep class **$$ViewBinder {
public static void bind(...);
public static void unbind(...);
}



-keep class com.google.common.** {*;}


-dontwarn sun.misc.Unsafe
-dontwarn javax.annotation.**

渐变文件

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.company.projectname"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

repositories {
mavenCentral()
}


dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.razorpay:checkout:1.2.1'
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.jakewharton:butterknife:8.5.1'
compile 'jp.wasabeef:picasso-transformations:2.1.0'
compile 'com.makeramen:roundedimageview:2.3.0'
compile 'com.github.greenfrvr:hashtag-view:1.2.1'
compile 'com.leaking.slideswitch:slideswitch:1.0.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'uk.co.chrisjenx:calligraphy:2.2.0'
compile 'com.android.volley:volley:1.0.0'
compile 'com.android.support:recyclerview-v7:25.1.0'
compile 'com.github.devlight:infinitecycleviewpager:1.0.2'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'

testCompile 'junit:junit:4.12'
}

项目级gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
maven {
url 'https://dl.bintray.com/leaking/maven'
}
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

最佳答案

这个问题被引用 here这发生在包括非 ASCII 类名的项目中。该问题将从 gradle Android 插件的 2.4 版开始解决(目前尚未发布)。

另一种方法是降级到 2.2.3:

classpath 'com.android.tools.build:gradle:2.2.3'

关于android - 错误 :Execution failed for task ':app:packageRelease' . > java.io.IOException:无法读取 zip 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42923544/

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