How to change small icon image in notification on Android device with DELPHI
问题 Is there any way to change the small icon image (default used application icon) in the notification in the Android application with Delphi? The standard way to easily create a notification is: var aNotification: TNotification; begin aNotification:= aNotificationCenter.CreateNotification; try aNotification.Name:= 'Notification Name'; aNotification.Title:= 'Notification Title'; aNotification.AlertBody:= 'Notification Alert Body'; aNotification.EnableSound:= False; aWorkNotification.Number:= 1;