File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff 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 )
18181 . [ Sample App] ( #sample-app )
19+ 1 . [ Snapshot Builds] ( #snapshot-builds )
19201 . [ 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
199200Run feature of Android Studio. Alternatively, update Android Studio and
200201Gradle 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
You can’t perform that action at this time.
0 commit comments