Skip to content

Commit 880eed2

Browse files
authored
Edit dependency for gradle (#7023)
Since gradle 3.0.x the `compile` keyword is deprecated. [You should](https://developer.android.com/studio/build/dependencies#dependency_configurations) use 'implementation' instead.
1 parent d209606 commit 880eed2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Getting-Started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ libraryDependencies += "io.reactivex.rxjava3" % "rxjava" % "3.0.4"
2727

2828
and for Gradle:
2929
```groovy
30-
compile 'io.reactivex.rxjava3:rxjava:3.0.4'
30+
implementation 'io.reactivex.rxjava3:rxjava:3.0.4'
3131
```
3232

3333
If you need to download the jars instead of using a build system, create a Maven `pom` file like this with the desired version:

0 commit comments

Comments
 (0)