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
Copy file name to clipboardExpand all lines: GETTING_STARTED.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
-
# FirebaseUI Auth for Android
1
+
# Easily add sign-in to your Android app with FirebaseUI
2
2
3
-
FirebaseUI Auth is a modern, Compose-based authentication library for Firebase Authentication on Android.
3
+
[FirebaseUI](https://github.com/firebase/firebaseui-android) Auth is a library built on top of the Firebase Authentication SDK that provides drop-in UI flows for use in your app.
4
4
5
-
`10.x` is currently a beta release.
5
+
Caution: Version 10.x is currently a **beta release**. This means that the functionality might change in backward-incompatible ways or have limited support. A beta release is not subject to any SLA or deprecation policy.
6
6
7
-
If you used the older FirebaseUI Auth guides, the biggest change in `10.x` is that the recommended sign-in flow now uses Compose screens instead of `Intent` builders and `ActivityResultLauncher` callbacks. For apps that still use Activities, see [Existing Activity-based apps](#existing-activity-based-apps).
7
+
If you used the older FirebaseUI Auth guides, the biggest change in `10.x` is that the recommended sign-in flow now uses Compose screens instead of `Intent` builders and `ActivityResultLauncher` callbacks. For apps that still use Activities, see the [Existing Activity-based apps](#existing-activity-based-apps) section.
8
8
9
9
FirebaseUI Auth provides the following benefits:
10
10
@@ -16,7 +16,7 @@ FirebaseUI Auth provides the following benefits:
16
16
17
17
## Before you begin
18
18
19
-
1.[Add Firebase to your Android project](https://firebase.google.com/docs/android/setup).
19
+
1.If you haven't already, [add Firebase to your Android project](https://firebase.google.com/docs/android/setup).
20
20
2. Make sure your app is set up for Jetpack Compose.
21
21
3. In the [Firebase console](https://console.firebase.google.com/), enable the sign-in methods you want to support.
22
22
@@ -48,7 +48,7 @@ Some providers need additional setup before you can sign users in.
48
48
49
49
### Google Sign-In
50
50
51
-
- Enable Google in the Firebase console.
51
+
- Enable Google Sign-in in the Firebase console.
52
52
- Add your app's SHA fingerprint in Firebase.
53
53
- Download the updated `google-services.json`.
54
54
-`AuthProvider.Google(..., serverClientId = null)` can use the `default_web_client_id` generated by the `google-services` Gradle plugin.
@@ -121,7 +121,7 @@ class MainActivity : ComponentActivity() {
121
121
122
122
This gives you a complete authentication flow with:
0 commit comments