Skip to content

Commit ef3785c

Browse files
authored
Merge pull request #553 from j3g/readme-add-jfrog-url
added the jfrog repository URL
2 parents 3cca80d + c983820 commit ef3785c

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,18 @@ Since RxAndroid is part of the RxJava family the communication channels are simi
2020
# Binaries
2121

2222
```groovy
23-
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0-SNAPSHOT'
24-
// Because RxAndroid releases are few and far between, it is recommended you also
25-
// explicitly depend on RxJava's latest version for bug fixes and new features.
26-
// (see https://github.com/ReactiveX/RxJava/releases for latest 3.x.x version)
27-
implementation 'io.reactivex.rxjava3:rxjava:3.0.0-RC2'
23+
allprojects {
24+
repositories {
25+
maven { url "https://oss.jfrog.org/libs-snapshot" }
26+
}
27+
}
28+
29+
dependencies {
30+
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0-SNAPSHOT'
31+
// Because RxAndroid releases are few and far between, it is recommended you also
32+
// explicitly depend on RxJava's latest version for bug fixes and new features.
33+
// (see https://github.com/ReactiveX/RxJava/releases for latest 3.x.x version)
34+
implementation 'io.reactivex.rxjava3:rxjava:3.0.0-RC2'
2835
```
2936

3037
* RxAndroid: <a href='http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.reactivex.rxjava2%22%20a%3A%22rxandroid%22'><img src='http://img.shields.io/maven-central/v/io.reactivex.rxjava3/rxandroid.svg'></a>

0 commit comments

Comments
 (0)