I’ve been trying to get LocalNotification working on our app but I can’t figure out why setting the soundName never seems to play the correct sound. It only plays default iOS notification sound.
LocalNotification notif = new LocalNotification();
notif.fireDate = time;
notif.alertAction = “alert”;
notif.alertBody = message;
notif.soundName = “helpSound”;
helpSound is a wav file.