9

私は私のプロジェクトを実行しようとすると、私はこのエラーが生じています:エラー重複したエントリ:COM /グーグル/アンドロイド/ GMS /場所/場所/ zzj.class

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/android/gms/location/places/zzj.class

は、ここで私はbuild.gradleファイルです

buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.1.2' 
     classpath 'io.realm:realm-gradle-plugin:0.89.1' 
    } 
} 
apply plugin: "com.android.library" 
apply plugin: "realm-android" 

repositories { 
    jcenter() 
} 

android { 
    compileSdkVersion 23 
    buildToolsVersion '23.0.3' 

    defaultConfig { 
     minSdkVersion 15 
     targetSdkVersion 22 
    } 

    buildTypes { 
     debug { 
      minifyEnabled false 
     } 
     release { 
      minifyEnabled false 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile "com.android.support:appcompat-v7:23.1.1" 
    compile "com.android.support:cardview-v7:23.1.1" 
    compile "com.android.support:recyclerview-v7:23.1.1" 
    compile "com.android.support:design:23.1.1" 
    compile "com.squareup.okhttp3:okhttp:3.1.2" 
    compile ('com.facebook.android:facebook-android-sdk:4.9.0') 
     { exclude group: 'com.android.support' } 
    compile ('com.googlecode.libphonenumber:libphonenumber:7.2.2') 
     { exclude group: 'com.android.support' } 
    compile "com.pubnub:pubnub-android:3.7.6" 
    compile "com.google.android.gms:play-services-maps:9.0.0" 
    compile "com.google.android.gms:play-services-gcm:9.0.0" 
    compile "com.google.android.gms:play-services-location:9.0.0" 
    compile ('com.appyvet:materialrangebar:1.3') 
     { exclude group: 'com.android.support' } 
    compile 'com.google.code.gson:gson:2.5' 
    compile "com.amazonaws:aws-android-sdk-s3:2.2.10" 
    compile "com.amazonaws:aws-android-sdk-core:2.2.10" 
    compile ('com.instabug.library:instabug:2.1') 
     { exclude group: 'com.android.support' } 
    compile 'com.github.tony19:logback-android-core:1.1.1-4' 
    compile 'com.github.tony19:logback-android-classic:1.1.1-4' 
    compile 'org.slf4j:slf4j-api:1.7.6' 
    compile 'ch.acra:acra:4.8.2' 
    compile 'pl.droidsonroids.gif:android-gif-drawable:1.1.15' 
    compile 'org.greenrobot:eventbus:3.0.0' 
    compile 'com.android.support:multidex:1.0.0' 
} 
+0

重複する依存関係があります。あなたはGoogleプレイスAPIの2つのバージョンがあるようです。 – Emmanuel

+0

@エムマヌエルそれは私があまりにも考えていることです。しかし、私はちょうどGoogleプレイスAPIの1つの依存関係を使用しています。私はそれが複製できる場所を見ることができません! – HiddenDroid

+1

端末上で './gradlew:android:dependencies'を実行します。あなたが使用している他のライブラリの1つは、おそらく以前のバージョンのGoogleプレイスライブラリに依存しています。あなたは依存関係をもたらし、そこからGoogleの場所を除外するライブラリを見つける必要があります。 – Emmanuel

答えて

19

私は9.0.0から9.2.0

compile 'com.google.android.gms:play-services-location:9.2.0' 
compile 'com.google.android.gms:play-services-maps:9.2.0' 
compile 'com.google.android.gms:play-services-gcm:9.2.0' 

にGoogle Playのサービス(地図、場所やGCM)はその後、私はこのDEPEを追加したアップグレードした:使用していますndency:

compile 'com.google.android.gms:play-services-places:9.2.0' 

そして、それは魔法のように動作します:)

+0

ありがとう、たくさんの男!あなたは私の時間を救った:) – Ghorbanzadeh

0

私はからcom.google.android.gmsの最新バージョンを追加しました: https://developers.google.com/android/guides/releases と私が使用GMSモジュールのforce = trueを追加しました:

compile('com.google.android.gms:play-services-analytics:11.0.2') { 
     force = true; 
    } 
    compile('com.google.android.gms:play-services-ads:11.0.2') { 
     force = true; 
    } 
    compile('com.google.android.gms:play-services-gcm:11.0.2') { 
     force = true; 
    } 
関連する問題