Skip to content

Commit 67d73b6

Browse files
authored
Add documentation about SNAPSHOT builds
1 parent 63572c5 commit 67d73b6

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ A compatible FirebaseUI client is also available for [iOS](https://github.com/fi
1616
1. [Compatability](#compatibility-with-firebase--google-play-services-libraries)
1717
1. [Upgrading dependencies](#upgrading-dependencies)
1818
1. [Sample App](#sample-app)
19+
1. [Snapshot Builds](#snapshot-builds)
1920
1. [Contributing](#contributing)
2021
1. [Installing](#installing-locally)
2122
1. [Deploying](#deployment)
@@ -199,6 +200,32 @@ and Gradle while trying to run the sample app, try disabling the Instant
199200
Run feature of Android Studio. Alternatively, update Android Studio and
200201
Gradle to their latest versions.
201202

203+
## Snapshot builds
204+
205+
Like to live on the cutting edge? Want to try the next release of FirebaseUI before anyone else? As of version `3.2.2`
206+
FirebaseUI hosts "snapshot" builds on oss.jfrog.org.
207+
208+
Just add the following to your `build.gradle`:
209+
210+
```groovy
211+
repositories {
212+
maven { url "https://oss.jfrog.org/artifactory/oss-release-local" }
213+
}
214+
```
215+
216+
Then you can depend on snapshot versions:
217+
218+
```groovy
219+
implementation 'com.firebaseui:firebase-ui-auth:3.2.2-SNAPSHOT`
220+
```
221+
222+
You can see which `SNAPSHOT` builds are avaiable here:
223+
https://oss.jfrog.org/webapp/#/artifacts/browse/tree/General/oss-snapshot-local/com/firebaseui
224+
225+
Snapshot builds come with absolutely no guarantees and we will close any issues asking to troubleshoot
226+
a snapshot report unless they identify a bug that should block the release launch. Experiment
227+
at your own risk!
228+
202229
## Contributing
203230

204231
### Installing locally

0 commit comments

Comments
 (0)