0

Firebaseクラウドメッセージをアプリケーションに実装しましたが、次のエラーが表示されます。Firebaseクラウドメッセージングを使用している場合、「重複エントリ:com/google/android/gms/internal/zzqd.class」

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

私の依存関係

dependencies { 
compile fileTree(dir: 'libs', include: ['*.jar']) 
testCompile 'junit:junit:4.12' 
compile 'com.android.support:appcompat-v7:23.4.0' 
compile 'com.android.volley:volley:1.0.0' 
compile 'com.android.support:support-v4:23.4.0' 
compile 'com.facebook.android:facebook-android-sdk:4.+' 
compile 'com.android.support:recyclerview-v7:23.4.0' 
compile 'com.android.support:cardview-v7:23.4.0' 
compile 'com.github.bumptech.glide:glide:3.7.0' 
compile 'com.android.support:design:23.4.0' 
compile 'com.google.android.gms:play-services-auth:9.4.0' 
compile 'com.google.firebase:firebase-messaging:9.4.0' 
compile project(':module2') 
} 
apply plugin: 'com.google.gms.google-services' 

あなたは他のすべてのものは、私はそれを提供します私に言う必要がある場合。

+0

に答えた。このリンクは、あなたが '' defaultConfig'内部multiDexEnabled true'を試したことがありますか?そうでなければそれを試してください。 –

答えて

0

は、あなたが同様にあなたのアプリレベルのbuild.gradle内で以下を追加する必要がありますのでFirebaseがDuplicateFileExceptionを生成することができ、この

dependencies { 
compile fileTree(dir: 'libs', include: ['*.jar']) 
testCompile 'junit:junit:4.12' 
compile 'com.android.support:appcompat-v7:23.4.0' 
compile 'com.android.volley:volley:1.0.0' 
compile 'com.facebook.android:facebook-android-sdk:4.+' 
compile 'com.android.support:recyclerview-v7:23.4.0' 
compile 'com.android.support:cardview-v7:23.4.0' 
compile 'com.github.bumptech.glide:glide:3.7.0' 
compile 'com.android.support:design:23.4.0' 
compile 'com.google.android.gms:play-services-auth:9.4.0' 
compile 'com.google.firebase:firebase-messaging:9.4.0' 
compile project(':module2') 
} 
apply plugin: 'com.google.gms.google-services' 
+0

それは私のために働いていませんでした。 –

+0

私は今すぐ更新しようとしました –

1

を試してみてください。次のブロックは、buildTypesブロックのすぐ下のアンドロイドブロック内に追加されます。

//Add the following block 
packagingOptions{ 
    exclude 'META-INF/LICENSE' 
    exclude 'META-INF/LICENSE-FIREBASE.txt' 
    exclude 'META-INF/NOTICE' 

} 

P.このミッシェルの答えは私のために働いた。

+0

まだ同じエラーです。 –

関連する問題