Hi,
In our config.lua we do NOT specify notifications:
notification =
{
iphone =
{
types =
{
“badge”, “sound”, “alert”
}
}
}
Please note: We do NOT specify notifications in config.lua.
So far so good - we don’t get that nagging alert box from Apple asking for permissions to send Push Notifications.
However, if we put this little line somewhere in our app:
native.setProperty( “applicationIconBadgeNumber”, 0 )
the alert box asking for permission to send push notifications to the device pops up.
I don’t think that is the correct behaviour. You should respect the config settings where we have chosen not to include the notification section. I wont go into our specific use case, I just want you to fix this so that calling native.setProperty (“applicationIconBadgeNumber”) don’t automatically registers for push notifications.
When can we expect this fixed?
Thanks