Getting the error “duplicate entry: com/google/android/gms/internal/zzble.class” when trying to add a package

前端 未结 6 1089
囚心锁ツ
囚心锁ツ 2020-12-16 13:31

I\'m trying to add the react-native-firestack package to my app. But it keeps giving the following error :

:app:mergeDebugResources UP-TO-DATE
:         


        
6条回答
  •  萌比男神i
    2020-12-16 13:49

    Just add following in your build.gradle

        android {
                configurations {
                all*.exclude module: 'play-services-awareness'
                }
        }
    

提交回复
热议问题