Skip to content

Commit

Permalink
Merge branch 'MaikuB:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
dishankjindal1 authored Feb 6, 2025
2 parents 389133f + c5f7d51 commit a67fa56
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions flutter_local_notifications/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [19.0.0-dev.5]

* [Android] **Breaking change** bumped `compileSdk` to 35 and updated readme to mention this
* Updated `compileSdk` and `targetSdkVersion` of example app to 35

## [19.0.0-dev.4]

* [Windows] **Breaking change** Reworked the APIs around custom images and audio. Check the updated example for more details, but in short:
Expand Down
4 changes: 2 additions & 2 deletions flutter_local_notifications/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,11 @@ dependencies {

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

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

```gradle
android {
compileSdk 34
compileSdk 35
...
}
```
Expand Down
2 changes: 1 addition & 1 deletion flutter_local_notifications/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ apply plugin: 'com.android.library'

android {
namespace 'com.dexterous.flutterlocalnotifications'
compileSdk 34
compileSdk 35
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down
4 changes: 2 additions & 2 deletions flutter_local_notifications/example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (flutterVersionName == null) {

android {
namespace 'com.dexterous.flutter_local_notifications_example'
compileSdk 34
compileSdk 35

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
Expand All @@ -43,7 +43,7 @@ android {
multiDexEnabled true
applicationId "com.dexterous.flutter_local_notifications_example"
minSdkVersion flutter.minSdkVersion
targetSdkVersion 34
targetSdkVersion 35
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion flutter_local_notifications/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flutter_local_notifications
description: A cross platform plugin for displaying and scheduling local
notifications for Flutter applications with the ability to customise for each
platform.
version: 19.0.0-dev.4
version: 19.0.0-dev.5
homepage: https://github.com/MaikuB/flutter_local_notifications/tree/master/flutter_local_notifications
issue_tracker: https://github.com/MaikuB/flutter_local_notifications/issues

Expand Down

0 comments on commit a67fa56

Please sign in to comment.