We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5791434 commit 3050749Copy full SHA for 3050749
lib/main.dart
@@ -74,9 +74,9 @@ Future<void> _boot(List<String> args) async {
74
flnp = FlutterLocalNotificationsPlugin();
75
if (isAndroid) {
76
await flnp.initialize(
77
- const InitializationSettings(
78
- android: AndroidInitializationSettings('@drawable/ic_launcher_foreground_no_transform'),
79
- ),
+ // Drawable ic_launcher_foreground_no_transform is shrunk when building in CI.
+ // The default one is compat but ok.
+ const InitializationSettings(android: AndroidInitializationSettings('@drawable/ic_launcher_foreground')),
80
onDidReceiveNotificationResponse: onLocalNotificationOpened,
81
);
82
if (autoSyncNoticeSeconds > 0) {
0 commit comments