@@ -41,7 +41,7 @@ How to use Fetch
41
41
Using Fetch is easy! Just add the Gradle dependency to your application's build.gradle file.
42
42
43
43
``` java
44
- implementation " com.tonyodev.fetch2:fetch2:2.0.0-RC1 "
44
+ implementation " com.tonyodev.fetch2:fetch2:2.0.0-RC2 "
45
45
```
46
46
47
47
Next, get an instance of Fetch using the builder, and request a download.
@@ -232,7 +232,7 @@ to use the OkHttp Downloader instead. You can create your own custom downloaders
232
232
if necessary. See the Java docs for details.
233
233
234
234
```java
235
- implementation "com.tonyodev.fetch2downloaders:fetch2downloaders:2.0.0-RC1 "
235
+ implementation "com.tonyodev.fetch2downloaders:fetch2downloaders:2.0.0-RC2 "
236
236
```
237
237
Set the OkHttp Downloader for Fetch to use.
238
238
```java
@@ -253,7 +253,7 @@ If you would like to take advantage of RxJava2 features when using Fetch,
253
253
add the following gradle dependency to your application' s build. gradle file.
254
254
255
255
```java
256
- implementation " com.tonyodev.fetch2rx:fetch2rx:2.0.0-RC1 "
256
+ implementation " com.tonyodev.fetch2rx:fetch2rx:2.0.0-RC2 "
257
257
```
258
258
259
259
RxFetch makes it super easy to enqueue download requests and query downloads using rxJava2 functional methods.
@@ -285,7 +285,7 @@ Fetch1 Migration
285
285
286
286
Migrate downloads from Fetch1 to Fetch2 using the migration assistant. Add the following gradle dependency to your application' s build.gradle file.
287
287
```java
288
- implementation "com.tonyodev.fetchmigrator:fetchmigrator:2.0.0-RC1 "
288
+ implementation "com.tonyodev.fetchmigrator:fetchmigrator:2.0.0-RC2 "
289
289
```
290
290
291
291
Then run the Migrator.
0 commit comments