We’re getting tons of support tickets from our users that has updated their device to 6.0.2. Push notifications has stopped working. We did some internal testing here, and indeed, when installing our Corona built game MindFeud on an ios 6.0.1 or 6.0.0 (or earlier) device, push works fine, but on 6.0.2 it does not. We have tested by downloading directly from the AppStore onto the devices.
Our servers never receive the device_token from 6.0.2 devices.
A small piece of code never hurts!
local function onNotification( event )
if event.type == "remoteRegistration" and event.token then
registerDeviceToken(event.token) -- Send to our servers...
end
end
Runtime:addEventListener( "notification", onNotification )
[import]uid: 21746 topic_id: 34429 reply_id: 334429[/import]
