You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The entry point for accessing a Firebase Database.
55
+
You can get an instance by calling getInstance.
56
+
To access a location in the database and read or write data, use `get_ref`
57
+
(**NOTE** ignore `getReference` on firebase documentation).
58
+
59
+
**methods**
60
+
- get_db
61
+
- get_ref
62
+
##### Visit [FirebaseDatabase Documentation](https://firebase.google.com/docs/reference/android/com/google/firebase/database/FirebaseDatabase) for more API
##### Visit [FirebaseFirestore Documentation](https://firebase.google.com/docs/reference/android/com/google/firebase/firestore/FirebaseFirestore) for more API
72
+
73
+
#### SJFirebaseUser
74
+
Represents a user's profile information in your Firebase project's user database.
75
+
It also contains helper methods to change or retrieve profile information,
76
+
as well as to manage that user's authentication state.
77
+
(**NOTE** ignore `getCurrentUser` on firebase documentation and use `get_current_user`).
78
+
79
+
**methods**
80
+
- get_current_user
81
+
- profile_change_request_builder
82
+
##### Visit [FirebaseUser Documentation](https://firebase.google.com/docs/reference/android/com/google/firebase/auth/FirebaseUser) for more API
0 commit comments