Skip to content

Commit a12d777

Browse files
authored
fixed example to make use of USE_EXACT_ALARM permission again (#2359)
1 parent 659fddd commit a12d777

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Diff for: flutter_local_notifications/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [17.2.1+1]
2+
3+
* Fixed accidental change done in example app as part of 17.2.0 where it made use of `SCHEDULE_EXACT_ALARM` permission instead of `USE_EXACT_ALARM`
4+
15
## [17.2.1]
26

37
* [Android] fixed issue [#2329](https://github.com/MaikuB/flutter_local_notifications/issues/2329) where a compilation issue could occur due to ambiguity between Android APIs being called. Thanks to the PR from [Greg Price](https://github.com/gnprice)

Diff for: flutter_local_notifications/example/android/app/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
66
<!-- NOTE: the example app requests USE_EXACT_ALARM to make it easier to run the app.
77
Developers will need to check if their own app needs to use SCHEDULE_EXACT_ALARM instead -->
8-
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
8+
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
99
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
1010
<application
1111
android:label="flutter_local_notifications_example"

Diff for: flutter_local_notifications/pubspec.yaml

+1-1
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: 17.2.1
5+
version: 17.2.1+1
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)