Skip to content

Commit e454f84

Browse files
android package updates (#1458)
* android package updates * update * update * update * updates * made changes breaking
1 parent 441c53c commit e454f84

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

permission_handler_android/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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.

permission_handler_android/android/build.gradle

+4-4
Original file line numberDiff line numberDiff 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 {

permission_handler_android/example/android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ if (flutterVersionName == null) {
2828

2929
android {
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
}

permission_handler_android/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: permission_handler_android
22
description: Permission plugin for Flutter. This plugin provides the Android API to request and check permissions.
33
homepage: https://github.com/baseflow/flutter-permission-handler
4-
version: 12.1.0
4+
version: 13.0.0
55

66
environment:
77
sdk: ^3.5.0

0 commit comments

Comments
 (0)