Skip to content

Commit

Permalink
Add documentation about SNAPSHOT builds
Browse files Browse the repository at this point in the history
  • Loading branch information
samtstern authored Feb 26, 2018
1 parent 63572c5 commit 67d73b6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ A compatible FirebaseUI client is also available for [iOS](https://github.com/fi
1. [Compatability](#compatibility-with-firebase--google-play-services-libraries)
1. [Upgrading dependencies](#upgrading-dependencies)
1. [Sample App](#sample-app)
1. [Snapshot Builds](#snapshot-builds)
1. [Contributing](#contributing)
1. [Installing](#installing-locally)
1. [Deploying](#deployment)
Expand Down Expand Up @@ -199,6 +200,32 @@ and Gradle while trying to run the sample app, try disabling the Instant
Run feature of Android Studio. Alternatively, update Android Studio and
Gradle to their latest versions.

## Snapshot builds

Like to live on the cutting edge? Want to try the next release of FirebaseUI before anyone else? As of version `3.2.2`
FirebaseUI hosts "snapshot" builds on oss.jfrog.org.

Just add the following to your `build.gradle`:

```groovy
repositories {
maven { url "https://oss.jfrog.org/artifactory/oss-release-local" }
}
```

Then you can depend on snapshot versions:

```groovy
implementation 'com.firebaseui:firebase-ui-auth:3.2.2-SNAPSHOT`
```

You can see which `SNAPSHOT` builds are avaiable here:
https://oss.jfrog.org/webapp/#/artifacts/browse/tree/General/oss-snapshot-local/com/firebaseui

Snapshot builds come with absolutely no guarantees and we will close any issues asking to troubleshoot
a snapshot report unless they identify a bug that should block the release launch. Experiment
at your own risk!

## Contributing

### Installing locally
Expand Down

0 comments on commit 67d73b6

Please sign in to comment.