Skip to content Skip to sidebar Skip to footer

Adobe Creative SDK (Android) - Duplicate Entry: Com/google/android/gms/iid/zzc.class

When I use Adobe Creative SDK, I'm facing the following error while building the APK. Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. com.android

Solution 1:

I solved this issue by excluding com.google.android.gms from creativesdk, use below code:

compile ('com.adobe.creativesdk:image:4.8.4') {
    exclude group: 'com.google.android.gms'
}

Post a Comment for "Adobe Creative SDK (Android) - Duplicate Entry: Com/google/android/gms/iid/zzc.class"