I am working with rpush (https://github.com/rpush/rpush) for ruby on rails. Using the GCM notification system for android, is it possible to set the notification style via a flag in the payload? I am specifically looking for a flag that would set the style to BigText. My current code looks like this:
def build_gcm_notification(token, message, title)
n = Rpush::Gcm::Notification.new
n.app = Rpush::Gcm::App.find_by(name: "android_app")
n.registration_ids = [token]
n.data = { body: message, title: title }
n.priority = "high"
n
end