In my application i have used parse informations for sending push notifications to user. By default notification icon used app icon – but I want to change notification icon (the small icon in status bar – to android style).
…
var
Notification: TNotification;
begin
if NotificationCenter1.Supported then
begin
Notification := NotificationCenter1.CreateNotification;
try
Notification.Name := ‘MyNotification’;
Notification.Title := ‘MyNotificationTitle’;
Notification.AlertBody := ‘MyNotificationAlertBody’;
Notification.FireDate := Now;
NotificationCenter1.ScheduleNotification(Notification);
finally
Notification.DisposeOf;
end;
end
Someone help me solve this problem?