|
| 1 | +# Upgrading to FirebaseUI 6.0 |
| 2 | + |
| 3 | +FirebaseUI version `6.0.0` has no breaking API changes from version `5.1.0` but updates |
| 4 | +critical dependencies to new major versions. |
| 5 | + |
| 6 | +There are two major groups of changes: |
| 7 | + |
| 8 | + * Convert all Android Support Library dependencies to AndroidX or Jetpack dependencies. For |
| 9 | + information on migrating to AndroidX see [this guide][androidx-migrate]. |
| 10 | + * Update all Firebase and Google Play services dependencies to their latest major versions. For |
| 11 | + information on changes included in these SDKs visit the [release notes][firebase-relnotes]. |
| 12 | + |
| 13 | + |
| 14 | +Below is a comprehensive list of all of the relevant dependencies for each module of FirebaseUI. |
| 15 | + |
| 16 | + |
| 17 | +**Auth** |
| 18 | + |
| 19 | +``` |
| 20 | +android.arch.lifecycle:extensions:1.1.1 |
| 21 | +androidx.browser:browser:1.0.0 |
| 22 | +androidx.cardview:cardview:1.0.0 |
| 23 | +androidx.constraintlayout:constraintlayout:1.1.3 |
| 24 | +androidx.legacy:legacy-support-v4:1.0.0 |
| 25 | +com.google.android.material:material:1.0.0 |
| 26 | +com.google.android.gms:play-services-auth:17.0.0 |
| 27 | +com.google.firebase:firebase-auth:19.0.0 |
| 28 | +``` |
| 29 | + |
| 30 | +**Common** |
| 31 | + |
| 32 | +``` |
| 33 | +android.arch.lifecycle:runtime:1.1.1 |
| 34 | +android.arch.lifecycle:viewmodel:1.1.1 |
| 35 | +androidx.annotation:annotation:1.1.0 |
| 36 | +``` |
| 37 | + |
| 38 | +**Database** |
| 39 | + |
| 40 | +``` |
| 41 | +androidx.legacy:legacy-support-v4:1.0.0 |
| 42 | +androidx.recyclerview:recyclerview:1.0.0 |
| 43 | +com.google.firebase:firebase-database:19.1.0 |
| 44 | +``` |
| 45 | + |
| 46 | +**Firestore** |
| 47 | + |
| 48 | +``` |
| 49 | +androidx.legacy:legacy-support-v4:1.0.0 |
| 50 | +androidx.recyclerview:recyclerview:1.0.0 |
| 51 | +com.google.firebase:firebase-firestore:21.1.0 |
| 52 | +``` |
| 53 | + |
| 54 | +**Storage** |
| 55 | + |
| 56 | +``` |
| 57 | +androidx.legacy:legacy-support-v4:1.0.0 |
| 58 | +com.google.firebase:firebase-storage:19.0.1 |
| 59 | +``` |
| 60 | + |
| 61 | +[androidx-migrate]: https://developer.android.com/jetpack/androidx/migrate |
| 62 | +[firebase-relnotes]: https://firebase.google.com/support/release-notes/android |
0 commit comments