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

前端 未结 5 1877
抹茶落季
抹茶落季 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条回答
  •  -上瘾入骨i
    2020-12-20 22:06

    The reason behind that may be you have include two different versions for gms. Also if you have included the complete package then there is no need to include the second 'compile 'com.google.android.gms:play-services:7.5.0'' If you need only auth services from google then dont include the complete package it ll exceed 65k methods and duplicacy chances will be there. Include this

    compile 'com.google.android.gms:play-services-auth:9.4.0'

    and from your code remove

    compile 'com.google.android.gms:play-services-auth:9.2.1' compile 'com.google.android.gms:play-services:7.5.0'

    Execute it and let me know once.

提交回复
热议问题