Skip to content

Version 2.1.0 #804

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 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.0.1'
compile 'com.firebaseui:firebase-ui-database:2.1.0'

// FirebaseUI Auth only
compile 'com.firebaseui:firebase-ui-auth:2.0.1'
compile 'com.firebaseui:firebase-ui-auth:2.1.0'

// FirebaseUI Storage only
compile 'com.firebaseui:firebase-ui-storage:2.0.1'
compile 'com.firebaseui:firebase-ui-storage:2.1.0'

// Single target that includes all FirebaseUI libraries above
compile 'com.firebaseui:firebase-ui:2.0.1'
compile 'com.firebaseui:firebase-ui:2.1.0'
}
```

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

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

## Dependencies

Expand Down Expand Up @@ -91,6 +91,7 @@ For convenience, here are some recent examples:

| FirebaseUI Version | Firebase/Play Services Version |
|--------------------|--------------------------------|
| 2.1.0 | 11.0.2 |
| 2.0.1 | 11.0.1 |
| 1.2.0 | 10.2.0 |
| 1.1.1 | 10.0.0 or 10.0.1 |
Expand Down
22 changes: 21 additions & 1 deletion auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Gradle, add the dependency:
```groovy
dependencies {
// ...
compile 'com.firebaseui:firebase-ui-auth:2.0.1'
compile 'com.firebaseui:firebase-ui-auth:2.1.0'

// Required only if Facebook login support is required
compile('com.facebook.android:facebook-android-sdk:4.22.1')
Expand All @@ -56,6 +56,26 @@ dependencies {
}
```

As of version `2.1.0` FirebaseUI includes translations for all string resources. In order to
ensure that you only get the translations relevant to your application, we recommend changing the
`resConfigs` of your application module:

```groovy
android {

// ...

defaultConfig {
// ...
resConfigs "auto"
}

}
```

See the [Android documentation](https://developer.android.com/studio/build/shrink-code.html#unused-alt-resources)
for more information.

### Identity provider configuration

In order to use either Google, Facebook or Twitter accounts with your app, ensure that
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.0.1'
version = '2.1.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.1'
firebaseVersion = '11.0.2'
supportLibraryVersion = '25.4.0'
}