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

前端 未结 5 1879
抹茶落季
抹茶落季 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

    Please be sure that you are using identical versions of com.google.gms. You can run the next command from the project root dir to find out which versions are used:

    ./gradlew ::dependencies
    

    Usually it is something like this:

    ./gradlew :app:dependencies 
    

    After analyzing you are able to set the same versions or exclude group from some modules or expose a version

提交回复
热议问题