Skip to content

Commit 1a71293

Browse files
Merge pull request #1909 from miguelpruivo/feature/16kb-support-android
Feature/16kb support android
2 parents 9451206 + 1b4bf7c commit 1a71293

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 10.3.6
2+
## Android
3+
- Added support for 16 KB page sizes. [#1888](https://github.com/miguelpruivo/flutter_file_picker/issues/1888)
4+
15
## 10.3.5
26
## iOS
37
- Fixed an error when loading large files (>= 2GB~).

android/build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
}
1212

1313
dependencies {
14-
classpath 'com.android.tools.build:gradle:7.4.2'
14+
classpath 'com.android.tools.build:gradle:8.5.1'
1515
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1616
}
1717
}
@@ -38,6 +38,11 @@ android {
3838
disable 'InvalidPackage'
3939
}
4040

41+
compileOptions {
42+
sourceCompatibility JavaVersion.VERSION_11
43+
targetCompatibility JavaVersion.VERSION_11
44+
}
45+
4146
dependencies {
4247
implementation 'androidx.core:core:1.15.0'
4348
implementation 'androidx.annotation:annotation:1.9.1'

example/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip

example/android/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pluginManagement {
1919

2020
plugins {
2121
id("dev.flutter.flutter-plugin-loader") version "1.0.0"
22-
id("com.android.application") version "8.9.1" apply false
22+
id("com.android.application") version "8.13.1" apply false
2323
id("org.jetbrains.kotlin.android") version "2.1.0" apply false
2424
}
2525

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: A package that allows you to use a native file explorer to pick sin
33
homepage: https://github.com/miguelpruivo/plugins_flutter_file_picker
44
repository: https://github.com/miguelpruivo/flutter_file_picker
55
issue_tracker: https://github.com/miguelpruivo/flutter_file_picker/issues
6-
version: 10.3.5
6+
version: 10.3.6
77

88
dependencies:
99
flutter:

0 commit comments

Comments
 (0)