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'
あなたは他のすべてのものは、私はそれを提供します私に言う必要がある場合。
に答えた。このリンクは、あなたが '' defaultConfig'内部multiDexEnabled true'を試したことがありますか?そうでなければそれを試してください。 –