Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions workmanager_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.10.0

- **FIX**: Failed host lookup when WorkManager initiates network calls in a background task on Android 15+
- **BREAKING** Bumps Android minSdkVersion to 23 due to androidx.work:work-runtime:2.11.2

## 0.9.0+2

- **FIX**: Android initialization bug and iOS 14 availability annotations (#647).
Expand Down
4 changes: 2 additions & 2 deletions workmanager_android/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ android {
}
defaultConfig {
compileSdk 35
minSdkVersion 19
minSdkVersion 23
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
Expand All @@ -43,7 +43,7 @@ android {
}

dependencies {
def work_version = "2.10.2"
def work_version = "2.11.2"
implementation "androidx.work:work-runtime:$work_version"
implementation "androidx.concurrent:concurrent-futures:1.1.0"

Expand Down
2 changes: 1 addition & 1 deletion workmanager_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: workmanager_android
description: Android implementation of the workmanager plugin.
version: 0.9.0+2
version: 0.10.0
# publish_to: none
homepage: https://github.com/fluttercommunity/flutter_workmanager
repository: https://github.com/fluttercommunity/flutter_workmanager
Expand Down
Loading