Skip to content

Commit 553d5fb

Browse files
authored
removed System.out.println that accidentally slipped in (#2013)
1 parent 1b7d27f commit 553d5fb

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-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+
# [14.1.1]
2+
3+
* Fixed typo in API docs for the deprecated `showDailyAtTime()` method. Thanks to the PR from [Yuichiro Kawano](https://github.com/yu1ro)
4+
* [Android] removed a call to standard output via `System.out.println()`
5+
16
# [14.1.0]
27

38
* [Android] added `alarmClock` as one of the `AndroidScheduleMode` options. This is useful for cases where a notification functions as an alarm and *may* show an alarm icon on the status bar depending on the device Thanks to the PR from [Muhammed Ballan](https://github.com/iballan)

flutter_local_notifications/android/src/main/java/com/dexterous/flutterlocalnotifications/FlutterLocalNotificationsPlugin.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1768,7 +1768,6 @@ public boolean onRequestPermissionsResult(
17681768

17691769
@Override
17701770
public boolean onNewIntent(Intent intent) {
1771-
System.out.println("mbui: onNewIntent");
17721771
boolean res = sendNotificationPayloadMessage(intent);
17731772
if (res && mainActivity != null) {
17741773
mainActivity.setIntent(intent);

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: 14.1.0
5+
version: 14.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)