File tree 1 file changed +27
-0
lines changed
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
16
16
1 . [ Compatability] ( #compatibility-with-firebase--google-play-services-libraries )
17
17
1 . [ Upgrading dependencies] ( #upgrading-dependencies )
18
18
1 . [ Sample App] ( #sample-app )
19
+ 1 . [ Snapshot Builds] ( #snapshot-builds )
19
20
1 . [ Contributing] ( #contributing )
20
21
1 . [ Installing] ( #installing-locally )
21
22
1 . [ Deploying] ( #deployment )
@@ -199,6 +200,32 @@ and Gradle while trying to run the sample app, try disabling the Instant
199
200
Run feature of Android Studio. Alternatively, update Android Studio and
200
201
Gradle to their latest versions.
201
202
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
+
202
229
## Contributing
203
230
204
231
### Installing locally
You can’t perform that action at this time.
0 commit comments