Skip to content

Commit 11c2c45

Browse files
committed
version update
1 parent 2768fc4 commit 11c2c45

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Androidx version 3.4.1
2+
1. Fix for slow download start on Android 14+. Removed dependency on broadcast receiver
3+
14
Androidx version 3.4.0
25
1. Fixes slow download start issues on Android 14+
36
2. Updated library dependencies.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ allprojects {
6262

6363
Add the Gradle dependency to your application's build.gradle file.
6464
```groovy
65-
implementation "com.github.tonyofrancis.Fetch:fetch2:3.4.0"
65+
implementation "com.github.tonyofrancis.Fetch:fetch2:3.4.1"
6666
```
6767

6868
Next, get an instance of Fetch and request a download.
@@ -228,7 +228,7 @@ to use the OkHttp Downloader instead. You can create your custom downloaders
228228
if necessary. See the Java docs for details.
229229

230230
```groovy
231-
implementation "com.github.tonyofrancis.Fetch:fetch2okhttp:3.4.0"
231+
implementation "com.github.tonyofrancis.Fetch:fetch2okhttp:3.4.1"
232232
```
233233

234234
Set the OkHttp Downloader for Fetch to use.
@@ -250,7 +250,7 @@ If you would like to take advantage of RxJava2 features when using Fetch,
250250
add the following gradle dependency to your application's build.gradle file.
251251

252252
```groovy
253-
implementation "com.github.tonyofrancis.Fetch:fetch2rx:3.4.0"
253+
implementation "com.github.tonyofrancis.Fetch:fetch2rx:3.4.1"
254254
```
255255

256256
RxFetch makes it super easy to enqueue download requests and query downloads using rxJava2 functional methods.
@@ -287,7 +287,7 @@ added in the coming days.
287287
Start using FetchFileServer by adding the gradle dependency to your application's build.gradle file.
288288

289289
```groovy
290-
implementation "com.github.tonyofrancis.Fetch:fetch2fileserver:3.4.0"
290+
implementation "com.github.tonyofrancis.Fetch:fetch2fileserver:3.4.1"
291291
```
292292

293293
Start a FetchFileServer instance and add resource files that it can serve to connected clients.
@@ -397,7 +397,7 @@ Fetch1 Migration
397397
Migrate downloads from Fetch1 to Fetch2 using the migration assistant. Add the following gradle dependency to your application's build.gradle file.
398398

399399
```groovy
400-
implementation "com.github.tonyofrancis.Fetch:fetchmigrator:3.4.0"
400+
implementation "com.github.tonyofrancis.Fetch:fetchmigrator:3.4.1"
401401
```
402402

403403
Then run the Migrator.

0 commit comments

Comments
 (0)