local notification badge not disappearing

I am trying to use local notifications in my app. They generally seem to work well; however, when I install a fresh copy of the app it installs itself with a notification badge. I removed all references to local notifications and the app was still installing with the badge.

Do the phones save local notification data somewhere? Would that be why it is “remembering” a notification that should not be there?

My app cancels all notifications on the app start and resume phase, but the badge continues to be there. [import]uid: 10903 topic_id: 24643 reply_id: 324643[/import]

Just wanted to bump this, anyone know how to remove this number? [import]uid: 10903 topic_id: 24643 reply_id: 100364[/import]

According to another post this will set the badge count.

native.setProperty( "applicationIconBadgeNumber", 0 )  

Hope that helps! [import]uid: 56820 topic_id: 24643 reply_id: 100367[/import]