I'd like to change style of the GCM Push Notifications my app is receiving from the standard single line notification to a multi-line notification.
The solution from the Java world seems to be to set the style of the notification to BigTextStyle
when it gets created.
I've found a solution for Local Notifications that involves hacking Androidapi.JNI.Support.pas
and System.Android.Notification.pas
so that
NotificationBuilder
has it's style set to BigTextStyle
.
I don't see anything analogous to Notification Builder for GCM Push Notifications. What am I missing?
In this case the app is being built for Android using Firemonkey with Delphi 10 (Seattle).