From 11c2c45f6be1cfe034fb2b32dea7c14660ff6961 Mon Sep 17 00:00:00 2001 From: Tonyo Francis Date: Tue, 3 Dec 2024 07:50:33 -0500 Subject: [PATCH] version update --- CHANGELOG | 3 +++ README.md | 10 +++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3b8a4601..8a17f180 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/README.md b/README.md index 8a0738bc..4d2e68d1 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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. @@ -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. @@ -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. @@ -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.