File tree Expand file tree Collapse file tree 4 files changed +14
-7
lines changed
permission_handler_android Expand file tree Collapse file tree 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+
18## 12.1.0
29
310- Updates the package to correctly support Flutter 3.29.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ buildscript {
88 }
99
1010 dependencies {
11- classpath ' com.android.tools.build:gradle:8.0.0 '
11+ classpath ' com.android.tools.build:gradle:8.0.2 '
1212 }
1313}
1414
@@ -26,11 +26,11 @@ android {
2626 if (project. android. hasProperty(" namespace" )) {
2727 namespace ' com.baseflow.permissionhandler'
2828 }
29- compileSdk 34
29+ compileSdkVersion 35
3030
3131 compileOptions {
32- sourceCompatibility JavaVersion . VERSION_1_8
33- targetCompatibility JavaVersion . VERSION_1_8
32+ sourceCompatibility JavaVersion . VERSION_17
33+ targetCompatibility JavaVersion . VERSION_17
3434 }
3535
3636 defaultConfig {
Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ if (flutterVersionName == null) {
2828
2929android {
3030 namespace ' com.baseflow.permissionhandler.example'
31- compileSdk 34
31+ compileSdkVersion 35
3232
3333 defaultConfig {
3434 // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
3535 applicationId " com.baseflow.permissionhandler.example"
3636 minSdkVersion flutter. minSdkVersion
37- targetSdkVersion 34
37+ targetSdkVersion 35
3838 versionCode flutterVersionCode. toInteger()
3939 versionName flutterVersionName
4040 }
Original file line number Diff line number Diff line change 11name : permission_handler_android
22description : Permission plugin for Flutter. This plugin provides the Android API to request and check permissions.
33homepage : https://github.com/baseflow/flutter-permission-handler
4- version : 12.1 .0
4+ version : 13.0 .0
55
66environment :
77 sdk : ^3.5.0
You can’t perform that action at this time.
0 commit comments