Skip to content

Commit c5f7d51

Browse files
authored
[flutter_local_notifications] bumped compileSdk to 35 (#2525)
* updated compileSdk to 35 * updated plugin version
1 parent f015afc commit c5f7d51

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

flutter_local_notifications/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [19.0.0-dev.5]
2+
3+
* [Android] **Breaking change** bumped `compileSdk` to 35 and updated readme to mention this
4+
* Updated `compileSdk` and `targetSdkVersion` of example app to 35
5+
16
## [19.0.0-dev.4]
27

38
* [Windows] **Breaking change** Reworked the APIs around custom images and audio. Check the updated example for more details, but in short:

flutter_local_notifications/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,11 +242,11 @@ dependencies {
242242

243243
More information and other proposed solutions can be found in [Flutter issue #110658](https://github.com/flutter/flutter/issues/110658).
244244

245-
The plugin also requires that the `compileSdk` in your application's Gradle file is set to 34 at a minimum:
245+
The plugin also requires that the `compileSdk` in your application's Gradle file is set to 35 at a minimum:
246246

247247
```gradle
248248
android {
249-
compileSdk 34
249+
compileSdk 35
250250
...
251251
}
252252
```

flutter_local_notifications/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ apply plugin: 'com.android.library'
2323

2424
android {
2525
namespace 'com.dexterous.flutterlocalnotifications'
26-
compileSdk 34
26+
compileSdk 35
2727
compileOptions {
2828
coreLibraryDesugaringEnabled true
2929
sourceCompatibility JavaVersion.VERSION_1_8

flutter_local_notifications/example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if (flutterVersionName == null) {
2424

2525
android {
2626
namespace 'com.dexterous.flutter_local_notifications_example'
27-
compileSdk 34
27+
compileSdk 35
2828

2929
sourceSets {
3030
main.java.srcDirs += 'src/main/kotlin'
@@ -43,7 +43,7 @@ android {
4343
multiDexEnabled true
4444
applicationId "com.dexterous.flutter_local_notifications_example"
4545
minSdkVersion flutter.minSdkVersion
46-
targetSdkVersion 34
46+
targetSdkVersion 35
4747
versionCode flutterVersionCode.toInteger()
4848
versionName flutterVersionName
4949
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

flutter_local_notifications/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flutter_local_notifications
22
description: A cross platform plugin for displaying and scheduling local
33
notifications for Flutter applications with the ability to customise for each
44
platform.
5-
version: 19.0.0-dev.4
5+
version: 19.0.0-dev.5
66
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications
77
issue_tracker: https://github.com/MaikuB/flutter_local_notifications/issues
88

0 commit comments

Comments
 (0)