I'm trying to test the local notifications on iOS using Cordova.
Everything it's working fine except the sound, I only get the default notification sound, not the custom sound I've added in the options.
This is only happening on iOS.
Code:
var now = new Date().getTime(),
_10_seconds_from_now = new Date(now + 3*1000);
window.plugin.notification.local.add({
id: 1,
title: 'Reminder',
message: 'Dont forget to buy some flowers.',
repeat: 'weekly',
date: _10_seconds_from_now,
sound: 'www/alarms/burglar.caf'
});