-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android 7.0 - Auth is not working with version firebase 7.1.0 #3693
Comments
"is not working" -> do you have some evidence? results of API calls that differ (with specifics)? Some adb logcat or Xcode log trace? |
Also - the firebase SDKs should have updated. You skipped that part of the template. Make sure you have the current stable Firebase SDKs in android and iOS and try |
I have tried the clean project with Not Working Version:
21705-21705/com.myapp W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
21705-21705/com.myapp W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
21705-21783/com.myapp D/Auth: signInWithEmailAndPassword
21705-21783/com.myapp I/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzaq@c64e91e
21705-21739/com.myapp W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
21705-21739/com.myapp W/GooglePlayServicesUtil: Google Play services out of date. Requires 12451000 but found 11743470 Working Version
21594-21734/com.bookbase D/Auth: signInWithEmailAndPassword
21594-21734/com.bookbase I/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzaq@86d3251
21594-21634/com.bookbase D/FirebaseAuth: Notifying id token listeners about user ( bce60LNMepTC1ahAgt8Kszyz3S43 ).
21594-21634/com.bookbase D/FirebaseAuth: Notifying auth state listeners about user ( bce60LNMepTC1ahAgt8Kszyz3S43 ).
21594-21594/com.bookbase D/Auth: addAuthStateListener:eventBody { NativeMap: {"user":{"metadata":{"lastSignInTime":1590693994116,"creationTime":1588535472183},"providerData":[{"email":"[email protected]","phoneNumber":null,"photoURL":null,"displayName":"Kerem Çubuk","uid":"[email protected]","providerId":"password"}],"phoneNumber":null,"photoURL":null,"displayName":"Kerem Çubuk","email":"[email protected]","isAnonymous":false,"emailVerified":false,"providerId":"firebase","uid":"bce60LNMepTC1ahAgt8Kszyz3S43"},"appName":"[DEFAULT]"} } I've just only implemented gms and firebase analytics manually. All other, firebase features are autolinked. android/build.gradle dependencies {
classpath("com.android.tools.build:gradle:3.4.2")
// Firebase
classpath 'com.google.gms:google-services:4.3.3'
} android/app/build.gradle dependencies {
implementation 'com.google.firebase:firebase-analytics:17.2.2'
} I think these information help us for resolve problem 😃 |
device play services out of date according to your android 7.0 log. How does it go when you follow the natural path from the log message (updating play services)? |
users update that normally, I've not seen it happen in the wild. Or you can use this from my rn-update-apk module (which is useful in that it patches SSL on older devices anyway) |
Issue
I'm developing a react-native app and I upgrade the version of firebase 7.1.0 from 6.7.1 after update the packages. I realized that it wasn't working. When I try to email login nothing happen. However, It works Android API 26,28,29 and IOS 13 which I've tested.
Project Files
Javascript
Click To Expand
package.json
:firebase.json
for react-native-firebase v6:# N/A
iOS
Click To Expand
ios/Podfile
:# N/A
AppDelegate.m
:// N/A
Android
Click To Expand
Have you converted to AndroidX?
android/gradle.settings
jetifier=true
for Android compatibility?jetifier
for react-native compatibility?android/build.gradle
:// N/A
android/app/build.gradle
:// N/A
android/settings.gradle
:// N/A
MainApplication.java
:// N/A
AndroidManifest.xml
:<!-- N/A -->
Environment
Click To Expand
react-native info
output:react-native-firebase
version you're using that has this issue:Firebase
module(s) you're using that has the issue:e.g. Instance ID
TypeScript
?React Native Firebase
andInvertase
on Twitter for updates on the library.The text was updated successfully, but these errors were encountered: