Custom sounds for LocalNotification.soundName

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.

Figured it out. Had to make sure that you drag the sound file into Xcode and add it to the project. Then make sure you set the LocalNotification.soundName = “notification.wav” or what ever your sound is called in Xcode.