File tree 5 files changed +11
-6
lines changed
flutter_local_notifications 5 files changed +11
-6
lines changed Original file line number Diff line number Diff line change
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
+
1
6
## [ 19.0.0-dev.4]
2
7
3
8
* [ Windows] ** Breaking change** Reworked the APIs around custom images and audio. Check the updated example for more details, but in short:
Original file line number Diff line number Diff line change @@ -242,11 +242,11 @@ dependencies {
242
242
243
243
More information and other proposed solutions can be found in [ Flutter issue #110658 ] ( https://github.com/flutter/flutter/issues/110658 ) .
244
244
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:
246
246
247
247
``` gradle
248
248
android {
249
- compileSdk 34
249
+ compileSdk 35
250
250
...
251
251
}
252
252
```
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ apply plugin: 'com.android.library'
23
23
24
24
android {
25
25
namespace ' com.dexterous.flutterlocalnotifications'
26
- compileSdk 34
26
+ compileSdk 35
27
27
compileOptions {
28
28
coreLibraryDesugaringEnabled true
29
29
sourceCompatibility JavaVersion . VERSION_1_8
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if (flutterVersionName == null) {
24
24
25
25
android {
26
26
namespace ' com.dexterous.flutter_local_notifications_example'
27
- compileSdk 34
27
+ compileSdk 35
28
28
29
29
sourceSets {
30
30
main. java. srcDirs + = ' src/main/kotlin'
@@ -43,7 +43,7 @@ android {
43
43
multiDexEnabled true
44
44
applicationId " com.dexterous.flutter_local_notifications_example"
45
45
minSdkVersion flutter. minSdkVersion
46
- targetSdkVersion 34
46
+ targetSdkVersion 35
47
47
versionCode flutterVersionCode. toInteger()
48
48
versionName flutterVersionName
49
49
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: flutter_local_notifications
2
2
description : A cross platform plugin for displaying and scheduling local
3
3
notifications for Flutter applications with the ability to customise for each
4
4
platform.
5
- version : 19.0.0-dev.4
5
+ version : 19.0.0-dev.5
6
6
homepage : https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications
7
7
issue_tracker : https://github.com/MaikuB/flutter_local_notifications/issues
8
8
You can’t perform that action at this time.
0 commit comments