This is the code to register for push
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)
{
[application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
[application registerForRemoteNotifications];
}
else
{
[application registerForRemoteNotificationTypes: (UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert)];
}
It works fine as the app registers with the server.
The PEM files are also done correctly as I can send a push to my device using sandbox APNS.
When I print my JSON payload from didReceiveRemoteNotification
I get this:
{
aps = {
alert = "Test Push Message";
};
}
The issue is when I receive my push (even when the device is set to loud) it doesn't play a sound.
From my knowledge, if you don't specify a sound in the JSON payload it should play the default OS sound.
In my App notification settings on the phone the sound is enabled by default because when I register I specify UIUserNotificationTypeSound
.
Anyone else come across this issue?
settings -> notifications -> (relevant app) -> customise notifications. ensure each account you want to have make a sound has alerts enabled. It has taken me days to get to this!
Go to Settings. Select Sounds and Vibration. Tap Volume. Adjust the notifications slider to where you want it.
On Android devices, it is possible to choose individual push notification sounds.
According to Apple's documentation you need to specify default
if you want to the default push notification to be played:
The name of a sound file in the app bundle. The sound in this file is played as an alert. If the sound file doesn’t exist or default is specified as the value, the default alert sound is played. The audio must be in one of the audio data formats that are compatible with system sounds; see Preparing Custom Alert Sounds for details.
The final JSON output:
{
"aps" : {
"alert" : "Test Push Message",
"sound" : "default"
};
}
You should modify server JSON output to this. default
it is sound type of the notification on your phone.
{
"aps": {
"alert": "test",
"sound": "default"
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With