1

アプリのビルド中にこのエラーが発生します。このエラーに関連する投稿が見つかりませんでした...

Error:Execution failed for task ':app:packageDebug'. > Failed to obtain compression information for entry

トップレベルのグラドル:

// すべてのサブプロジェクト/モジュールに共通の構成オプションを追加できるトップレベルのビルド ファイル。

buildscript {
    repositories {
        jcenter()
        google()
        mavenCentral()
    }
    dependencies {
        //classpath 'com.android.tools.build:gradle:2.3.3'
        classpath 'com.android.tools.build:gradle:3.0.1'



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

allprojects {
    repositories {
        jcenter()
        google()
        mavenCentral()
        mavenLocal()
        maven {url "C://Users/yuh5/.m2/repository"}
    }
}

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

1 に答える 1