huawei p40 with react-native-firebase #4901
-
Can react-native-firebase be implemented on latest huawei phones, for example, huawei p40? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is the canonical documentation: https://firebase.google.com/docs/android/android-play-services It will be based on current versions though, and 6.3.4 is definitely not current, so if you make decisions based on that document you'll want to be up to date here (10.7.x at the moment) so you get latest firebase-android-sdk (26.4.0 at time of me typing this). Then I would say you should try it and see It is also important to understand what the android google-services plugin does, it is not "play services", it is "google services" - it's just a convenient way to get the contents of google-services.json (your firebase project definition, in other words) injected into the app. It actually has no bearing on Play Services. |
Beta Was this translation helpful? Give feedback.
This is the canonical documentation: https://firebase.google.com/docs/android/android-play-services
It will be based on current versions though, and 6.3.4 is definitely not current, so if you make decisions based on that document you'll want to be up to date here (10.7.x at the moment) so you get latest firebase-android-sdk (26.4.0 at time of me typing this).
Then I would say you should try it and see
It is also important to understand what the android google-services plugin does, it is not "play services", it is "google services" - it's just a convenient way to get the contents of google-services.json (your firebase project definition, in other words) injected into the app. It actually h…