I'm using the Distriqt PushNotifications ANE and PARSE to send PushNotifications, and so far everything is working PERFECTLY.
This means, I register my iOS devices and receive PushNotifications as it should be....
When I send PushNotifications with PARSE I use the badge:"Increment" value, which understandably increments the Value By +1.
After I open the App, I want to reset the BADGE to be at 0 and I use the setBadgeNumber(0) method... This also works, I tried with other values like 11, or 1 and it displays it correctly.
The Problem is that when I send another PARSE notification it displays now the old value + 1 !!!
Like so:
- I use PARSE to send 3 PushNotifications
- The badge displays (3)
- I use the setBadgeNumber(0)
- The badge displays (0)
- I use PARSE to send 2 additional PushNotifications
- The badge displays (5)!!!!
How can I really reset the badge?