Skip to content

Commit 1bdd1ab

Browse files
committed
Move migration guide to docs/
This aligns it with the other migration guides
1 parent 66bff6b commit 1bdd1ab

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

auth/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Add the FirebaseUI Auth library dependency to your `build.gradle.kts` (Module):
8282
```kotlin
8383
dependencies {
8484
// FirebaseUI for Auth
85-
implementation("com.firebaseui:firebase-ui-auth:10.0.0")
85+
implementation("com.firebaseui:firebase-ui-auth:10.0.0-beta01")
8686

8787
// Required: Firebase Auth
8888
implementation(platform("com.google.firebase:firebase-bom:32.7.0"))
@@ -1440,7 +1440,7 @@ FirebaseAuthScreen(
14401440

14411441
**Migration Checklist:**
14421442

1443-
- [ ] Update dependency to `firebase-ui-auth:10.0.0`
1443+
- [ ] Update dependency to `firebase-ui-auth:10.0.0-beta01`
14441444
- [ ] Convert Activities to Composables
14451445
- [ ] Replace Intent-based flow with `FirebaseAuthScreen`
14461446
- [ ] Update configuration from builder pattern to DSL
@@ -1449,7 +1449,7 @@ FirebaseAuthScreen(
14491449
- [ ] Remove `ActivityResultLauncher` and use direct callbacks
14501450
- [ ] Update sign-out/delete to use suspend functions
14511451

1452-
For a complete migration example, see the [migration guide](MIGRATION.md).
1452+
For a complete migration example, see the [migration guide](../docs/upgrade-to-10.0.md).
14531453

14541454
---
14551455

auth/MIGRATION.md renamed to docs/upgrade-to-10.0.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Migration Guide: FirebaseUI Auth 9.x to 10.x
22

33
This guide helps you migrate from FirebaseUI Auth 9.x (View-based) to 10.x (Compose-based).
4+
Note that 10.x is a beta release.
45

56
## Overview
67

@@ -47,7 +48,7 @@ dependencies {
4748
```kotlin
4849
dependencies {
4950
// FirebaseUI Auth
50-
implementation("com.firebaseui:firebase-ui-auth:10.0.0")
51+
implementation("com.firebaseui:firebase-ui-auth:10.0.0-beta01")
5152

5253
// Required: Jetpack Compose
5354
implementation(platform("androidx.compose:compose-bom:2024.01.00"))
@@ -445,7 +446,7 @@ val configuration = authUIConfiguration {
445446

446447
## Checklist
447448

448-
- [ ] Updated dependency to `firebase-ui-auth:10.0.0`
449+
- [ ] Updated dependency to `firebase-ui-auth:10.0.0-beta01`
449450
- [ ] Migrated to Jetpack Compose
450451
- [ ] Converted Activities to ComponentActivities with `setContent {}`
451452
- [ ] Replaced `createSignInIntentBuilder()` with `authUIConfiguration {}`

0 commit comments

Comments
 (0)