Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyofrancis committed Dec 3, 2024
1 parent 07e3969 commit 860e26d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Androidx version 3.4.0
1. Fixes slow download start issues on Android 14+
2. Updated library dependencies.
3. Connectivity manager deprecation fixes.Thanks to @vicajilau
4. Range End Handling fixes. Thanks to @Baniares
5. Documentation update. Thanks to @gardenappl
6. NetworkInfoProvider fixes. Thanks to @nstratak

Version 3.1.0/ Androidx version 3.2.0
1. Android 14 compatibility, min SDK 16, AGP 8.2.0, Gradle 8.5, Kotlin 1.9.20. Thanks to @helloimfrog
2. Android SDK 34 and fixes of register receiver. Thanks to @Kutikov
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ allprojects {

Add the Gradle dependency to your application's build.gradle file.
```groovy
implementation "com.github.tonyofrancis.Fetch:fetch2:3.3.0"
implementation "com.github.tonyofrancis.Fetch:fetch2:3.4.0"
```

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

```groovy
implementation "com.github.tonyofrancis.Fetch:fetch2okhttp:3.3.0"
implementation "com.github.tonyofrancis.Fetch:fetch2okhttp:3.4.0"
```

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

```groovy
implementation "com.github.tonyofrancis.Fetch:fetch2rx:3.3.0"
implementation "com.github.tonyofrancis.Fetch:fetch2rx:3.4.0"
```

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

```groovy
implementation "com.github.tonyofrancis.Fetch:fetch2fileserver:3.3.0"
implementation "com.github.tonyofrancis.Fetch:fetch2fileserver:3.4.0"
```

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

```groovy
implementation "com.github.tonyofrancis.Fetch:fetchmigrator:3.3.0"
implementation "com.github.tonyofrancis.Fetch:fetchmigrator:3.4.0"
```

Then run the Migrator.
Expand Down
4 changes: 2 additions & 2 deletions versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ ext {
timber_version = "5.0.1"
agp_version = '8.7.2'
multidex_version = '2.0.1'
library_version = '3.3.0'
library_version_code = 83
library_version = '3.4.0'
library_version_code = 84
}

0 comments on commit 860e26d

Please sign in to comment.