If you have users in the EU and are wondering about compliance with the GDPR, the answer is yes, the use of Firebase services almost certainly means you are collecting or processing data that is regulated by the GDPR .
Read moreIs Firebase Auth safe?
0 providers are the most secure . If you use Firebase’s managed authentication features, the OAuth 2.0 / OpenID Connect provider options (Google, Facebook, etc.) are the most secure. You should support one or more of these providers if you can (depending on your user base).
Read moreIs Firebase API secure?
In a word, yes. As stated by one of the Firebase team engineers, your Firebase API key only identifies your project with Google’s servers. It is not a security risk to expose it .
Read moreHow do you check if a user is logged in Firebase?
How do I detect if a user is already logged in Firebase?
Read moreCan I know the password of a user of my app with Firebase user authentication?
If you are u storing the user and password in firebase authentication then no it is not possible to view the password written by the user . You can store the password in the database but if someone got access to your database they can know all the passwords of the users using your application.
Read moreWhich method will you call to logout a user from Firebase?
Signing out If you’d like to sign the user out of their current authentication state, call the signOut method : import auth from ‘@react-native-firebase/auth’; auth() .
Read moreHow do I remove all authenticated users from Firebase?
original answer
Read more