私は取得しています私のプロジェクトをビルドする:それらを削除、 アンドロイド - のGradle - アプリ:transformResourcesWithMergeJavaResForDebug java.util.zip.ZipException
Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
> java.util.zip.ZipException: error in opening zip file
はすでにGradleのキャッシュを無効にしようとした(フォルダ.android \ビルドキャッシュ)同様の質問を探しています。
最新のアンドロイドプラグインとグラデルバージョン(2.3.0と3.3)を使用しています。
以前のバージョン(2.2.3および2.14.1)で試してみましたが、同様のエラーが発生します。
Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
> com.android.build.api.transform.TransformException: java.lang.RuntimeException: java.lang.RuntimeException: Exception while checking library jar
Gradleのファイルは次のとおりです。アプリ内のファイルを削除する
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "XXXXXXXXXXXXXXXX"
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
android.defaultConfig.vectorDrawables.useSupportLibrary = true;
}
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:25.2.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.google.maps.android:android-maps-utils:0.4.3'
compile 'com.google.android.gms:play-services-maps:10.2.0'
compile 'com.google.android.gms:play-services-location:10.2.0'
testCompile 'junit:junit:4.12'
//3rd Party
compile 'com.getbase:floatingactionbutton:1.10.1'
compile 'com.jakewharton:butterknife:8.5.1'
compile 'org.greenrobot:eventbus:3.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
compile 'org.parceler:parceler-api:1.1.6'
annotationProcessor 'org.parceler:parceler:1.1.6'
}
ファイルを追加した場合は、破損した '.jar'を確認してください。 – Wizard
プロジェクトに手動で追加された '.jar'ファイルはありません。 – rSilva