Skip to content

Commit 0a40eef

Browse files
authored
[flutter_local_notifications] updated example app min SDK version on Android side (#2077)
* updated example app min SDK version on Android side * add changelog entry for Dart API docs fix
1 parent a60866a commit 0a40eef

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
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+
# [16.0.0-dev.2]
2+
3+
* Updated example app so that the Android side specifies minimum SDK version version that aligns with what's specified by the Flutter SDK
4+
* Fixed Dart API docs for `DarwinNotificationDetails` class where `this This` was being repeated. Thanks to the PR from [Adrian Jagielak](https://github.com/adrianjagielak)
5+
16
# [16.0.0-dev.1]
27

38
* [Android] **Breaking change** renamed the `requestPermission()` associated with the `AndroidFlutterLocalNotificationsPlugin` class to `requestNotificationsPermission()`. This was done to be more explicit given another method (`requestExactAlarmsPermission()`) has been added that also requests a permission (more details below).

flutter_local_notifications/example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ android {
4242
defaultConfig {
4343
multiDexEnabled true
4444
applicationId "com.dexterous.flutter_local_notifications_example"
45-
minSdkVersion 16
45+
minSdkVersion flutter.minSdkVersion
4646
targetSdkVersion 33
4747
versionCode flutterVersionCode.toInteger()
4848
versionName flutterVersionName

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: 16.0.0-dev.1
5+
version: 16.0.0-dev.2
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)