Skip to content

Commit 48f017a

Browse files
authored
Version 2.1.0 (#804)
Change-Id: Ie26d2cc58ec698471f589f6ac044ee4241c3539d
1 parent 90a5f3b commit 48f017a

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ libraries.
3939
```groovy
4040
dependencies {
4141
// FirebaseUI Database only
42-
compile 'com.firebaseui:firebase-ui-database:2.0.1'
42+
compile 'com.firebaseui:firebase-ui-database:2.1.0'
4343
4444
// FirebaseUI Auth only
45-
compile 'com.firebaseui:firebase-ui-auth:2.0.1'
45+
compile 'com.firebaseui:firebase-ui-auth:2.1.0'
4646
4747
// FirebaseUI Storage only
48-
compile 'com.firebaseui:firebase-ui-storage:2.0.1'
48+
compile 'com.firebaseui:firebase-ui-storage:2.1.0'
4949
5050
// Single target that includes all FirebaseUI libraries above
51-
compile 'com.firebaseui:firebase-ui:2.0.1'
51+
compile 'com.firebaseui:firebase-ui:2.1.0'
5252
}
5353
```
5454

@@ -63,7 +63,7 @@ After the project is synchronized, we're ready to start using Firebase functiona
6363
If you are using an old version of FirebaseUI and upgrading, please see the appropriate
6464
migration guide:
6565

66-
* [Upgrade from 1.2.0 to 2.0.x](./docs/upgrade-to-2.0.md)
66+
* [Upgrade from 1.2.0 to 2.x.x](./docs/upgrade-to-2.0.md)
6767

6868
## Dependencies
6969

@@ -91,6 +91,7 @@ For convenience, here are some recent examples:
9191

9292
| FirebaseUI Version | Firebase/Play Services Version |
9393
|--------------------|--------------------------------|
94+
| 2.1.0 | 11.0.2 |
9495
| 2.0.1 | 11.0.1 |
9596
| 1.2.0 | 10.2.0 |
9697
| 1.1.1 | 10.0.0 or 10.0.1 |

auth/README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Gradle, add the dependency:
4646
```groovy
4747
dependencies {
4848
// ...
49-
compile 'com.firebaseui:firebase-ui-auth:2.0.1'
49+
compile 'com.firebaseui:firebase-ui-auth:2.1.0'
5050
5151
// Required only if Facebook login support is required
5252
compile('com.facebook.android:facebook-android-sdk:4.22.1')
@@ -56,6 +56,26 @@ dependencies {
5656
}
5757
```
5858

59+
As of version `2.1.0` FirebaseUI includes translations for all string resources. In order to
60+
ensure that you only get the translations relevant to your application, we recommend changing the
61+
`resConfigs` of your application module:
62+
63+
```groovy
64+
android {
65+
66+
// ...
67+
68+
defaultConfig {
69+
// ...
70+
resConfigs "auto"
71+
}
72+
73+
}
74+
```
75+
76+
See the [Android documentation](https://developer.android.com/studio/build/shrink-code.html#unused-alt-resources)
77+
for more information.
78+
5979
### Identity provider configuration
6080

6181
In order to use either Google, Facebook or Twitter accounts with your app, ensure that

constants.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project.ext {
22
submodules = ['database', 'auth', 'storage']
33
group = 'com.firebaseui'
4-
version = '2.0.1'
4+
version = '2.1.0'
55
pomdesc = 'Firebase UI Android'
66

77
compileSdk = 25
@@ -10,6 +10,6 @@ project.ext {
1010

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

13-
firebaseVersion = '11.0.1'
13+
firebaseVersion = '11.0.2'
1414
supportLibraryVersion = '25.4.0'
1515
}

0 commit comments

Comments
 (0)