I have the local notification below and everything works as expected except the sound is not turning off if I set the property to null, the vibration is not working if I set the property to true, and the badge is not being removed if I set the property to 0.
this.localNotifications.schedule({
id: 1,
sound: null,
vibrate: true,
badge: 0,
icon: ‘file://assets/icon.png’,
title: this._assistant.getAssistantName() + ’ مستعدة! ',
sticky: true,
});
Using:
“@ionic-native/local-notifications”: “^5.11.0”,
“cordova-plugin-local-notification”: “0.9.0-beta.2”.
Thanks.