Hi,
It seems that push notifications doesn’t work anymore on my apps (using corona > 1100 at least)
I’ve the same code (for a quite long time) to process my notifications :
local launchArgs = ... local function onNotification( event ) native.showAlert( "remote", json.encode( launchArgs ), { "OK" } ) end Runtime:addEventListener( "notification", onNotification )
And now nothing is fired. My certificates are up to date, and on old versions of my app, this very same code works.
So i think this could be due to recent changes on corona (like corona cloud…)
Any ideas ?