I just got push notifications working with my app. It's a Post/Comment style application. If someone answer a users Post, they are sent a push notification. I WANT 1 to be added to the badge. However the value I send appears to SET as oppose to ADD.
If I then want to ADD, is the only way to do so by keeping track of unread comments server side, and then before I send the push notification, tally the amount of unread comments owned by the users, add 1 to it, and then send that value? Is there no way to send a value to tally?
How do you properly manage the badge count?