logcat的錯誤:執行失敗的任務 ':應用程序:packageAllLocalVersionDebugClassesForMultiDex'
Error:Execution failed for task ':app:packageAllLocalVersionDebugClassesForMultiDex'.>java.util.zip.ZipException: duplicate entry: bolts/AggregateException.class
應用搖籃相關性:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.jeremyfeinstein.slidingmenu:library:[email protected]'
compile 'com.daimajia.swipelayout:library:[email protected]'
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.loopj.android:android-async-http:1.4.9'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.google.android.gms:play-services-appindexing:8.1.0'
compile 'com.android.support:multidex:1.0.1'
compile 'com.github.traex.rippleeffect:library:1.3'
compile 'com.facebook.fresco:fresco:0.9.0'
compile 'de.hdodenhof:circleimageview:1.3.0'
compile project(':floating_button_library')
compile 'com.facebook.android:facebook-android-sdk:4.10.0'
}
加爲Facebook SDK構建拋出一個異常的依賴後 建議我的回答謝謝..
編輯:
解決的錯誤
現在他們分裂螺栓,Android系統成爲螺栓,applinks和螺栓的任務是.so你既需要從gradle這個排除建立
compile ('com.facebook.android:facebook-android-sdk:4.10.0'){
exclude group: 'com.parse.bolts',
module: 'bolts-tasks'
exclude group: 'com.parse.bolts',
module: 'bolts-applinks';}
這完全適用於我!!!!
有相互矛盾的是兩個不同的版本。 facebooksdk附帶了bolts-android-1.1.2,並且appcompatv7附帶了1.1.4。 – Madhur
未命名的Android專用庫容器在FacebookSDK庫項目中,其中包含bolts-android-1.1.2。 – Madhur
@Madhur你能解釋一下怎麼做。我是android新手。 – prasanthMurugan