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 2768fc4 commit 11c2c45
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Androidx version 3.4.1
1. Fix for slow download start on Android 14+. Removed dependency on broadcast receiver

Androidx version 3.4.0
1. Fixes slow download start issues on Android 14+
2. Updated library dependencies.
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.4.0"
implementation "com.github.tonyofrancis.Fetch:fetch2:3.4.1"
```

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.4.0"
implementation "com.github.tonyofrancis.Fetch:fetch2okhttp:3.4.1"
```

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.4.0"
implementation "com.github.tonyofrancis.Fetch:fetch2rx:3.4.1"
```

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.4.0"
implementation "com.github.tonyofrancis.Fetch:fetch2fileserver:3.4.1"
```

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.4.0"
implementation "com.github.tonyofrancis.Fetch:fetchmigrator:3.4.1"
```

Then run the Migrator.
Expand Down

0 comments on commit 11c2c45

Please sign in to comment.