Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[flutter_local_notifications] bumped compileSdk to 35 #2525

Merged
merged 2 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading