From 3334ed835250e348c210414609bcdba4bd64242c Mon Sep 17 00:00:00 2001 From: Marcos Alvarenga Date: Wed, 8 Nov 2023 10:53:28 -0300 Subject: [PATCH] Terminal Condition added to avoid 'didNotificationLaunchApp=true' when opening app from recent apps list. --- .../FlutterLocalNotificationsPlugin.java | 28 +++++++++++++++---- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/flutter_local_notifications/android/src/main/java/com/dexterous/flutterlocalnotifications/FlutterLocalNotificationsPlugin.java b/flutter_local_notifications/android/src/main/java/com/dexterous/flutterlocalnotifications/FlutterLocalNotificationsPlugin.java index 9ee5660cf..ed154718e 100644 --- a/flutter_local_notifications/android/src/main/java/com/dexterous/flutterlocalnotifications/FlutterLocalNotificationsPlugin.java +++ b/flutter_local_notifications/android/src/main/java/com/dexterous/flutterlocalnotifications/FlutterLocalNotificationsPlugin.java @@ -133,6 +133,7 @@ public class FlutterLocalNotificationsPlugin private static final String SELECT_FOREGROUND_NOTIFICATION_ACTION = "SELECT_FOREGROUND_NOTIFICATION"; private static final String SCHEDULED_NOTIFICATIONS = "scheduled_notifications"; + private static final String LAUNCHED_FROM_NOTIFICATION = "LAUNCHED_FROM_NOTIFICATION"; private static final String INITIALIZE_METHOD = "initialize"; private static final String GET_CALLBACK_HANDLE_METHOD = "getCallbackHandle"; private static final String ARE_NOTIFICATIONS_ENABLED_METHOD = "areNotificationsEnabled"; @@ -1580,21 +1581,38 @@ private void getNotificationAppLaunchDetails(Result result) { Boolean notificationLaunchedApp = false; if (mainActivity != null) { Intent launchIntent = mainActivity.getIntent(); + notificationLaunchedApp = - launchIntent != null - && (SELECT_NOTIFICATION.equals(launchIntent.getAction()) - || SELECT_FOREGROUND_NOTIFICATION_ACTION.equals(launchIntent.getAction())) - && !launchedActivityFromHistory(launchIntent); + isNotificationLaunchedApp(launchIntent); + if (notificationLaunchedApp) { notificationAppLaunchDetails.put( "notificationResponse", extractNotificationResponseMap(launchIntent)); + launchIntent.putExtra(LAUNCHED_FROM_NOTIFICATION, true); + mainActivity.setIntent(launchIntent); } - } + } notificationAppLaunchDetails.put(NOTIFICATION_LAUNCHED_APP, notificationLaunchedApp); result.success(notificationAppLaunchDetails); } + private boolean isNotificationLaunchedApp(Intent launchIntent) { + Boolean isAlreadyLaunched = isAlreadyLaunched(launchIntent); + return launchIntent != null + && (SELECT_NOTIFICATION.equals(launchIntent.getAction()) + || SELECT_FOREGROUND_NOTIFICATION_ACTION.equals(launchIntent.getAction())) + && !launchedActivityFromHistory(launchIntent) + && !isAlreadyLaunched; + } + + private Boolean isAlreadyLaunched(Intent intent) { + if(intent != null && intent.hasExtra(LAUNCHED_FROM_NOTIFICATION)) { + return intent.getBooleanExtra(LAUNCHED_FROM_NOTIFICATION, false); + } + return false; + } + private void initialize(MethodCall call, Result result) { Map arguments = call.arguments(); String defaultIcon = (String) arguments.get(DEFAULT_ICON);