React Native Could Not Find Com.google.firebase
I have recently ejected my react native app to Expokit. I am trying to use react native firebase. After following the setup instructions for react native firebase as given on andro
Solution 1:
You'll need to add the Google maven repo, see https://firebase.google.com/docs/android/setup#manually_add_firebase
In the root build.gradle there should be an allprojects > dependencies section. Add the maven repo there underneath jcenter()
:
maven {
url "https://maven.google.com"// Google's Maven repository
}
Post a Comment for "React Native Could Not Find Com.google.firebase"