File tree Expand file tree Collapse file tree 5 files changed +11
-6
lines changed
flutter_local_notifications Expand file tree Collapse file tree 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+
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:
Original file line number Diff line number Diff line change @@ -242,11 +242,11 @@ dependencies {
242242
243243More 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
248248android {
249- compileSdk 34
249+ compileSdk 35
250250 ...
251251}
252252```
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ apply plugin: 'com.android.library'
2323
2424android {
2525 namespace ' com.dexterous.flutterlocalnotifications'
26- compileSdk 34
26+ compileSdk 35
2727 compileOptions {
2828 coreLibraryDesugaringEnabled true
2929 sourceCompatibility JavaVersion . VERSION_1_8
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if (flutterVersionName == null) {
2424
2525android {
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"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: flutter_local_notifications
22description : 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
66homepage : https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications
77issue_tracker : https://github.com/MaikuB/flutter_local_notifications/issues
88
You can’t perform that action at this time.
0 commit comments