Skip to content

Commit 860e26d

Browse files
committed
version update
1 parent 07e3969 commit 860e26d

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Androidx version 3.4.0
2+
1. Fixes slow download start issues on Android 14+
3+
2. Updated library dependencies.
4+
3. Connectivity manager deprecation fixes.Thanks to @vicajilau
5+
4. Range End Handling fixes. Thanks to @Baniares
6+
5. Documentation update. Thanks to @gardenappl
7+
6. NetworkInfoProvider fixes. Thanks to @nstratak
8+
19
Version 3.1.0/ Androidx version 3.2.0
210
1. Android 14 compatibility, min SDK 16, AGP 8.2.0, Gradle 8.5, Kotlin 1.9.20. Thanks to @helloimfrog
311
2. Android SDK 34 and fixes of register receiver. Thanks to @Kutikov

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.3.0"
65+
implementation "com.github.tonyofrancis.Fetch:fetch2:3.4.0"
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.3.0"
231+
implementation "com.github.tonyofrancis.Fetch:fetch2okhttp:3.4.0"
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.3.0"
253+
implementation "com.github.tonyofrancis.Fetch:fetch2rx:3.4.0"
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.3.0"
290+
implementation "com.github.tonyofrancis.Fetch:fetch2fileserver:3.4.0"
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.3.0"
400+
implementation "com.github.tonyofrancis.Fetch:fetchmigrator:3.4.0"
401401
```
402402

403403
Then run the Migrator.

versions.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ ext {
2020
timber_version = "5.0.1"
2121
agp_version = '8.7.2'
2222
multidex_version = '2.0.1'
23-
library_version = '3.3.0'
24-
library_version_code = 83
23+
library_version = '3.4.0'
24+
library_version_code = 84
2525
}

0 commit comments

Comments
 (0)