エラー:タスク ':app:transformDexWithInstantRunSlicesApkForDebug'の実行に失敗しました。zipファイルの読み取りに失敗しました

tnylee:

プロジェクトをビルドしようとすると、次のエラーが表示されます。Android Studio 2.3.3と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ファイル

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.1"
    defaultConfig {
        applicationId "xx.xx.xx"
        minSdkVersion 17
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

    // Simple Auth
    android.defaultConfig.manifestPlaceholders = [
            facebookAppId        : "123123123",
            googleWebClientId    : "",
            twitterConsumerKey   : "dcLF7SQehnNFvJ",
            twitterConsumerSecret: "9cUW1PEjGmqh3f93Ly5MwY",
            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'
}

プロジェクトレベルのグラドル

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
}
ドミトロ・トゥルコフ:

設定でインスタントランをオフにすると役に立ちました

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

Related 関連記事

ホットタグ

アーカイブ