From 7160fe23ff34102f9f35868cc58fbc444fc2af5a Mon Sep 17 00:00:00 2001 From: Navaron Bracke Date: Mon, 10 Jun 2024 10:22:58 +0200 Subject: [PATCH 1/4] bump min Android SDK to 21; bump compile SDK / target SDK to 34 --- android/build.gradle | 4 ++-- example/android/app/build.gradle | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 40828dfe..759a900a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -22,10 +22,10 @@ rootProject.allprojects { apply plugin: 'com.android.library' android { - compileSdkVersion 33 + compileSdk 34 defaultConfig { - minSdkVersion 16 + minSdk 21 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } lintOptions { diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 28746ddd..275f5dfc 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -15,7 +15,7 @@ apply plugin: 'com.android.application' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { - compileSdk 33 + compileSdk 34 lintOptions { disable 'InvalidPackage' @@ -23,8 +23,8 @@ android { defaultConfig { applicationId "com.mr.flutter.plugin.filepicker.example" - minSdkVersion flutter.minSdkVersion - targetSdk 33 + minSdk flutter.minSdkVersion + targetSdk 34 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" From 276367342781ff888b5be0d1ded5f2d05446f1c9 Mon Sep 17 00:00:00 2001 From: Navaron Bracke Date: Sat, 15 Jun 2024 19:10:28 +0200 Subject: [PATCH 2/4] bump hotfix version --- CHANGELOG.md | 4 ++++ pubspec.yaml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fba10fe9..abd616f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 8.0.6 +### Android +Updates the minimum SDK version to 21, to match the current Flutter minimum Android SDK version. + ## 8.0.5 ### Web Release picked file data in memory to avoid memory leak diff --git a/pubspec.yaml b/pubspec.yaml index 6147c99a..f21a2d37 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: A package that allows you to use a native file explorer to pick sin homepage: https://github.com/miguelpruivo/plugins_flutter_file_picker repository: https://github.com/miguelpruivo/flutter_file_picker issue_tracker: https://github.com/miguelpruivo/flutter_file_picker/issues -version: 8.0.5 +version: 8.0.6 dependencies: flutter: From 6ff64e9893dd48edc7f85e90af70f662b6498c5e Mon Sep 17 00:00:00 2001 From: Navaron Bracke Date: Sat, 15 Jun 2024 20:11:17 +0200 Subject: [PATCH 3/4] Bump win32 --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index f21a2d37..edb9a25d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ dependencies: plugin_platform_interface: ^2.1.8 ffi: ^2.0.1 path: ^1.8.2 - win32: ^5.1.1 + win32: ^5.5.1 cross_file: ^0.3.3+7 web: ^0.5.1 From 2d007574ab6e49592af8f2bfe9ceaa90ca860bab Mon Sep 17 00:00:00 2001 From: philenius Date: Mon, 1 Jul 2024 21:58:15 +0200 Subject: [PATCH 4/4] chore: update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abd616f0..55a27734 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## 8.0.6 ### Android -Updates the minimum SDK version to 21, to match the current Flutter minimum Android SDK version. +Updates the minimum Android SDK version to 21, to match the current Flutter minimum Android SDK version. Fixes [#1522](https://github.com/miguelpruivo/flutter_file_picker/issues/1522), [#1528](https://github.com/miguelpruivo/flutter_file_picker/issues/1528), and [#1531](https://github.com/miguelpruivo/flutter_file_picker/issues/1531). Thanks @navaronbracke. ## 8.0.5 ### Web