java.util.zip.ZipException: duplicate entry: com/google/android/gms/internal/zzbq.class

前端 未结 5 1900
抹茶落季
抹茶落季 2020-12-20 21:40

I am new in Android. i am currently working in android app and when i try to run the app this error occurs.

I have researched but cant solve this error.

er

5条回答
  •  难免孤独
    2020-12-20 22:10

    In my case, it's because of the

    compile 'com.facebook.android:audience-network-sdk:4.+'
    

    I change it to this:

     compile ('com.facebook.android:audience-network-sdk:4.+'){
            exclude group:"com.google.android.gms"
        }
    

    No more problem!

提交回复
热议问题