I'm looking to do exactly what's described in this question, but sending to an Android client. How does the Android client correctly handle the loc-key
, loc-args
and action-loc-key
parameters in the alert
object?
Cloud code:
Parse.Push.send({
where: pushQuery,
data: {
title: title,
alert: {
"loc-key":"msg",
"loc-args":["John"],
"action-loc-key":"rsp"
},
type: type
}
}
How can the Android client correctly handle those keys and localize the push? Do I have to manually subclass the Parse broadcast receiver?