0

我試圖建立我在Android工作室的虛擬仿真應用,我已經成功地測試了API級別21以上我現在測試較低級別的API 19,但每當我跑,我會得到這個錯誤:transformClassesWithJarMergingForDebug'執行失敗'。 (排球)

錯誤:執行任務':app:transformClassesWithJarMergingForDebug'失敗。

com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/android/volley/Request$Priority.class

這是我的gradle這個文件:

apply plugin: 'com.android.application' 

android { 
compileSdkVersion 25 
buildToolsVersion "25.0.0" 
defaultConfig { 
    minSdkVersion 15 
    targetSdkVersion 25 
    versionCode 1 
    versionName "1.0" 
    multiDexEnabled true 
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
} 
buildTypes { 
    release { 
     minifyEnabled false 
     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.android.support:appcompat-v7:25.1.0' 
compile 'com.android.support:support-v4:25.1.0' 
compile 'com.android.volley:volley:1.0.0' 
compile 'com.mcxiaoke.volley:library:1.0.19' 
compile 'dev.dworks.libs:volleyplus:0.1.4' 
compile 'com.squareup.okhttp3:okhttp:3.5.0' 
compile 'com.google.android.gms:play-services-gcm:10.0.1' 
compile 'com.google.firebase:firebase-appindexing:10.0.1' 
compile 'com.android.support:design:25.1.0' 
compile 'com.roughike:bottom-bar:1.2.1' 
compile 'com.ncapdevi:frag-nav:1.2.2' 
compile 'me.dm7.barcodescanner:zxing:1.8.4' 
compile 'com.android.support:cardview-v7:25.1.0' 
compile 'com.android.support:recyclerview-v7:25.1.0' 
compile 'com.google.firebase:firebase-core:10.0.1' 
compile 'com.google.firebase:firebase-messaging:10.0.1' 
compile 'de.hdodenhof:circleimageview:2.1.0' 
compile 'com.loopj.android:android-async-http:1.4.9' 
compile 'net.gotev:uploadservice:3.0.3' 
compile 'com.facebook.android:facebook-android-sdk:[4,5)' 
compile 'com.google.android.gms:play-services-auth:10.0.1' 
compile 'com.journeyapps:zxing-android-embedded:3.4.0' 
compile 'com.ogaclejapan.smarttablayout:library:[email protected]' 
compile 'com.ogaclejapan.smarttablayout:utils-v4:[email protected]' 
compile 'com.hedgehog.ratingbar:app:1.1.2' 
testCompile 'junit:junit:4.12' 
compile 'com.squareup.picasso:picasso:2.5.2' 
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0' 

} 
apply plugin: 'com.google.gms.google-services' 

我已經找到關於這一點,但許多解決方案在網上沒有明確這個問題,我相信這個問題是凌空抽射,但我不能消除由於任何庫到我的代碼。我應該如何解決這個問題?謝謝!

回答

0

您正在使用2個不同版本的凌空庫

compile 'com.android.volley:volley:1.0.0' 
compile 'com.mcxiaoke.volley:library:1.0.19' 

使用上述

任何一個,我不知道

compile 'dev.dworks.libs:volleyplus:0.1.4' 

如果類似圖書館上述兩,錯誤仍然會保留

+0

是否可以離開這兩個庫?因爲我在我的項目中使用了它們兩個。 – JerryKo

+1

他們都是同一個庫你爲什麼要這兩個? – Redman

+0

您可能需要這些庫中的獨特功能? @JerryKo – Nilabja

相關問題