Com.android.build.api.transform.transformexception: Java.util.zip.zipexception: Duplicate Entry: Com/google/android/gms/internal/zzel.class
This is my gradle file.. I'm getting this issue Error:Execution failed for task ':crushmatic:transformClassesWithJarMergingForDebug'. com.android.build.api.transform.Transfo
Solution 1:
You can use this command at the Android Studio Terminal:
1
./gradlew :app:dependencies
2
./gradlew clean (Android ---> Clean the Project)
3
./gradlew clean assembleDebug | ./gradlew clean:assembleDebug
With this things that you wrote you are cleaning and rebuilding the project. Specifically with the first one you are deleting everything duplicate and wrong in your project.
Let me know if this works! I fixed my project.
Post a Comment for "Com.android.build.api.transform.transformexception: Java.util.zip.zipexception: Duplicate Entry: Com/google/android/gms/internal/zzel.class"