I\'m having as issue with Push Notification to iOS8 device. Everything works fine, but the push is not ringing, only appears on the screen. I am sending normal pushes via da
The push register method is changed in iOS 8.Check following possibilities..
1)Check whether you register push notification with sound as this link.
2)Another possibility is sound can be switched off in notification centre.Check in settings-->notification centre-->click on the app and enable sound.
Seems like you need this in the request JSON: "sound": "default"
. Blank used to work, but now needs "default" to use the default sound.