Skip to content

Commit

Permalink
Version 2.2.0
Browse files Browse the repository at this point in the history
Change-Id: Ie255c7b33996735e33fa8e84608b1ef89cc593d2
  • Loading branch information
samtstern committed Aug 2, 2017
1 parent 7f546f0 commit ce2b77d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ libraries.
```groovy
dependencies {
// FirebaseUI Database only
compile 'com.firebaseui:firebase-ui-database:2.1.1'
compile 'com.firebaseui:firebase-ui-database:2.2.0'
// FirebaseUI Auth only
compile 'com.firebaseui:firebase-ui-auth:2.1.1'
compile 'com.firebaseui:firebase-ui-auth:2.2.0'
// FirebaseUI Storage only
compile 'com.firebaseui:firebase-ui-storage:2.1.1'
compile 'com.firebaseui:firebase-ui-storage:2.2.0'
// Single target that includes all FirebaseUI libraries above
compile 'com.firebaseui:firebase-ui:2.1.1'
compile 'com.firebaseui:firebase-ui:2.2.0'
}
```

Expand Down Expand Up @@ -90,7 +90,8 @@ you need to make sure that you use the same version that your chosen version of
For convenience, here are some recent examples:

| FirebaseUI Version | Firebase/Play Services Version |
|--------------------|--------------------------------|
|--------------------|--------------------------------|\
| 2.2.0 | 11.0.4 |
| 2.1.1 | 11.0.2 |
| 2.0.1 | 11.0.1 |
| 1.2.0 | 10.2.0 |
Expand Down Expand Up @@ -156,7 +157,7 @@ allprojects {

There is a sample app in the `app/` directory that demonstrates most
of the features of FirebaseUI. Load the project in Android Studio and
run it on your Android device to see a demonstration.
run it on your Android device to see a demonstration.

Before you can run the sample app, you must create a project in
the Firebase console. Add an Android app to the project, and copy
Expand Down
12 changes: 6 additions & 6 deletions auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ Gradle, add the dependency:
```groovy
dependencies {
// ...
compile 'com.firebaseui:firebase-ui-auth:2.1.1'
compile 'com.firebaseui:firebase-ui-auth:2.2.0'
// Required only if Facebook login support is required
compile('com.facebook.android:facebook-android-sdk:4.22.1')
// Required only if Twitter login support is required
compile("com.twitter.sdk.android:twitter-core:3.0.0@aar") { transitive = true }
}
Expand All @@ -62,14 +62,14 @@ ensure that you only get the translations relevant to your application, we recom

```groovy
android {
// ...
defaultConfig {
// ...
resConfigs "auto"
}
}
```

Expand Down
4 changes: 2 additions & 2 deletions constants.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project.ext {
submodules = ['database', 'auth', 'storage']
group = 'com.firebaseui'
version = '2.1.1'
version = '2.2.0'
pomdesc = 'Firebase UI Android'

compileSdk = 25
Expand All @@ -10,6 +10,6 @@ project.ext {

buildTools = '25.0.3' // Remember to also update in .travis.yml

firebaseVersion = '11.0.2'
firebaseVersion = '11.0.4'
supportLibraryVersion = '25.4.0'
}

0 comments on commit ce2b77d

Please sign in to comment.