Hide badge value of iOS remote Push notifications

Hi,

Is it possible to hide the badge value from the App Icon on push notifications? I’m trying to send an int variable along with my push notifications and I’ve found no other way to do it besides using the badge paramater in the payload, and when I tried sending a push this way I didn’t see any badge value on my developer build. But when I tried using my build that is live on the app store I very much do see a badge value showing the int variable over the app icon.

So to the question, is it possible to hide the badge somehow but still use it? Maybe by removing the “badge” string paramater from the config.lua file?

Would be easier to try and see myself but since it only occurs on the live app store version it seems, I can’t play with it too much…

Thanks in advance, [import]uid: 14018 topic_id: 33110 reply_id: 333110[/import]

native.setProperty( “applicationIconBadgeNumber”, 0 )

It is incredibly case sensitive. [import]uid: 19626 topic_id: 33110 reply_id: 131519[/import]

Ah great! Must have missed that one. Thanks! :slight_smile: [import]uid: 14018 topic_id: 33110 reply_id: 131521[/import]

native.setProperty( “applicationIconBadgeNumber”, 0 )

It is incredibly case sensitive. [import]uid: 19626 topic_id: 33110 reply_id: 131519[/import]

Ah great! Must have missed that one. Thanks! :slight_smile: [import]uid: 14018 topic_id: 33110 reply_id: 131521[/import]