alice icon indicating copy to clipboard operation
alice copied to clipboard

Alice on tap notification on both android and ios is not woking

Open DevThurain opened this issue 2 years ago • 0 comments

#Alice 0.4.1 Alice notification on tap is calling my local onDidReceiveNotificationResponse

...... flutterLocalNotificationPlugin.initialize(initializationSettings, onDidReceiveNotificationResponse: (detail) { onSelectNotification("payload"); });

static Future onSelectNotification(String? payload) async { debugPrint("local noti"); if (payload != null) print('Get payload $payload'); } .....

It is using my onDidReceiveNotificationResponse instead of calling Alice core.

DevThurain avatar Mar 29 '24 02:03 DevThurain