Error:Execution failed for task ':app:transformDexWithInstantRunSlicesApkForDebug'. Failed to read zip file

匿名 (未验证) 提交于 2019-12-03 01:33:01

问题:

I get the following error when I tried to build my project. I'm using Android Studio 2.3.3 and macOS High Sierra.

Error:Execution failed for task ':app:transformDexWithInstantRunSlicesApkForDebug'. > java.io.UncheckedIOException: java.io.IOException: Failed to read zip file '/Users/tanyalertwichaiworawit/AndroidStudioProjects/BensBoat/app/build/intermediates/split-apk/debug/slices/slice_1.apk'. 

Gradle file

apply plugin: 'com.android.application'  android {     compileSdkVersion 26     buildToolsVersion "26.0.1"     defaultConfig {         applicationId "com.bensboat.bensboat"         minSdkVersion 17         targetSdkVersion 26         versionCode 1         versionName "1.0"         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"     }      // Simple Auth     android.defaultConfig.manifestPlaceholders = [             facebookAppId        : "259498414801701",             googleWebClientId    : "",             twitterConsumerKey   : "dcLF7SQehnNFvJPMXwQ1Kiz0e",             twitterConsumerSecret: "9cUW1PEjGmqh3f93Ly5MwYFBwLugj19kg9hK3QgaUUgWH6DYCa",             instagramClientId    : "",             instagramClientSecret: "",             instagramRedirectUri : ""     ]      buildTypes {         release {             minifyEnabled false             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'         }     }     sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/fonts'] } } }  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.android.support:appcompat-v7:26.0.0'     compile 'com.android.support.constraint:constraint-layout:1.0.2'     testCompile 'junit:junit:4.12'      // Picasso     compile 'com.squareup.picasso:picasso:2.5.2'      // GSON with Retrofit     compile 'com.google.code.gson:gson:2.8.0'     compile 'com.squareup.retrofit2:retrofit:2.3.0'     compile 'com.squareup.retrofit2:converter-gson:2.3.0'     compile 'com.squareup.okhttp3:okhttp:3.9.0'     compile 'com.squareup.okhttp3:logging-interceptor:3.9.0'      // KProgressHUD     compile 'com.kaopiz:kprogresshud:1.1.0'      // Circle indicator     compile 'me.relex:circleindicator:1.2.2@aar'      // Buttons     compile 'info.hoang8f:fbutton:1.0.5'      // Stateful Layout     compile 'com.github.gturedi:stateful-layout:1.2.1'      // Model name     compile 'com.jaredrummler:android-device-names:1.1.5'      // SimpleAuth     //compile 'com.jaychang:simpleauth:2.1.3'     compile 'com.jaychang:simpleauth-facebook:2.1.3'     compile 'com.jaychang:simpleauth-twitter:2.1.3'      // Easy Prefs     compile 'com.pixplicity.easyprefs:library:1.9.0'      // TSnackbar     compile 'com.androidadvance:topsnackbar:1.1.1' } 

Project level gradle

buildscript {     repositories {         jcenter()     }     dependencies {         classpath 'com.android.tools.build:gradle:2.3.3'          // NOTE: Do not place your application dependencies here; they belong         // in the individual module build.gradle files     } }  allprojects {     repositories {         jcenter()          maven { url "https://maven.google.com"}     } }  task clean(type: Delete) {     delete rootProject.buildDir } 

回答1:

Switch off the Instant Run in Preferences helped me



回答2:

You might want to upgrade to a different version of gradle by changing the version in the gradle-wrapper.properties file, as suggested in this answer.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!