As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Hi Guillermo, Can you clarify what you mean by badge number?
G
Guillermo Sáenz
said
almost 10 years ago
The icon badge number. The little red circule on the left top corner of the app icon. The JSON dictionary that is going to be sent to the APNs can have a "badge" key that puts a number on the icon. I want to know how can I modify the default value ("0") that the kinvey push system sends
B
Borna Beaković
said
almost 10 years ago
Finally found it under Business Logic complete reference:
var iOSAps = { alert: "You have a new message", badge: 2, sound: "notification.wav" }
var iOSExtras = {from: "Kinvey", subject: "Welcome to Business Logic"}
var androidPayload = {message: "You have a new Message", from: "Kinvey", subject: "Welcome to BL" }
Guillermo Sáenz