Skip to content

Commit ad7f5c3

Browse files
committed
updated plugin to no longer register Linux implementation (#2379)
1 parent 036277c commit ad7f5c3

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
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.2]
2+
3+
* Bumped dependency on `flutter_local_notifications_linux` to 4.0.1. Updated app-facing packaging to no longer create and register the Linux implementation as this will now be handled by the `flutter_local_notifications_linux` package itself
4+
15
## [17.2.1+2]
26

37
* Updated Gradle setup readme section around specifying AGP version to include link to Flutter documentation for apps that are using the declarative Plugin DSL syntax

Diff for: flutter_local_notifications/lib/src/flutter_local_notifications_plugin.dart

-3
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ class FlutterLocalNotificationsPlugin {
3838
} else if (defaultTargetPlatform == TargetPlatform.macOS) {
3939
FlutterLocalNotificationsPlatform.instance =
4040
MacOSFlutterLocalNotificationsPlugin();
41-
} else if (defaultTargetPlatform == TargetPlatform.linux) {
42-
FlutterLocalNotificationsPlatform.instance =
43-
LinuxFlutterLocalNotificationsPlugin();
4441
}
4542
}
4643

Diff for: flutter_local_notifications/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ 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+2
5+
version: 17.2.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

99
dependencies:
1010
clock: ^1.1.0
1111
flutter:
1212
sdk: flutter
13-
flutter_local_notifications_linux: ^4.0.0
13+
flutter_local_notifications_linux: ^4.0.1
1414
flutter_local_notifications_platform_interface: ^7.2.0
1515
timezone: ^0.9.0
1616

0 commit comments

Comments
 (0)