File tree 4 files changed +14
-7
lines changed
permission_handler_android
4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 13.0.0
2
+
3
+ - ** BREAKING CHANGES:** When updating to version 13.0.0 make sure to also set the ` compileSdkVersion ` in the ` app/build.gradle ` file to ` 35 ` .
4
+ - Updates Android ` compileSdkVersion: 33 ` to ` 35 `
5
+ - Updates Android ` com.android.tools.build:gradle:8.0.0 ` to ` com.android.tools.build:gradle:8.0.2 `
6
+ - Updates Android ` sourceCompatibility = JavaVersion.VERSION_1_8 ` to ` sourceCompatibility = JavaVersion.VERSION_17 `
7
+
1
8
## 12.1.0
2
9
3
10
- Updates the package to correctly support Flutter 3.29.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ buildscript {
8
8
}
9
9
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:8.0.0 '
11
+ classpath ' com.android.tools.build:gradle:8.0.2 '
12
12
}
13
13
}
14
14
@@ -26,11 +26,11 @@ android {
26
26
if (project. android. hasProperty(" namespace" )) {
27
27
namespace ' com.baseflow.permissionhandler'
28
28
}
29
- compileSdk 34
29
+ compileSdkVersion 35
30
30
31
31
compileOptions {
32
- sourceCompatibility JavaVersion . VERSION_1_8
33
- targetCompatibility JavaVersion . VERSION_1_8
32
+ sourceCompatibility JavaVersion . VERSION_17
33
+ targetCompatibility JavaVersion . VERSION_17
34
34
}
35
35
36
36
defaultConfig {
Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ if (flutterVersionName == null) {
28
28
29
29
android {
30
30
namespace ' com.baseflow.permissionhandler.example'
31
- compileSdk 34
31
+ compileSdkVersion 35
32
32
33
33
defaultConfig {
34
34
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
35
35
applicationId " com.baseflow.permissionhandler.example"
36
36
minSdkVersion flutter. minSdkVersion
37
- targetSdkVersion 34
37
+ targetSdkVersion 35
38
38
versionCode flutterVersionCode. toInteger()
39
39
versionName flutterVersionName
40
40
}
Original file line number Diff line number Diff line change 1
1
name : permission_handler_android
2
2
description : Permission plugin for Flutter. This plugin provides the Android API to request and check permissions.
3
3
homepage : https://github.com/baseflow/flutter-permission-handler
4
- version : 12.1 .0
4
+ version : 13.0 .0
5
5
6
6
environment :
7
7
sdk : ^3.5.0
You can’t perform that action at this time.
0 commit comments