I am trying to add a custom sound to at push notification with PushSharp, but I can't find any documentation about this. I am using a windows service in C#, and every thing worked with default sound. But when I use this code I either get default sound og no sound.
push.QueueNotification(new AppleNotification()
.ForDeviceToken(deviceToken)
.WithAlert(FormatMatchesMessage(offers))
.WithSound("Jingle.mp3"));
I have the sound file included in the C# project, and also included in the iOS app project.
What do I need to do to make it work? Is it something about filetypes?