科多瓦当地通知声音不工作在ios和andorid
我已经使用https://github.com/katzer/cordova-plugin-local-notifications插件。 现在我有问题来获取我的声音文件在Android和iOS。 如果您有解决scheme,请让我知道。
window.plugin.notification.local.add({ id: '0001', date: new Date, message: 'hello', title: 'title, badge: 1, sound: 'www/resources/audio/beep.mp3', autoCancel: true, ongoing: true });
我需要做的事情我需要改变我本地的应用程序在sencha触摸。
我认为这个插件是更新的,现在已经废弃了"window.plugin.notification.local.add"
方法,现在是"window.plugin.notification.local.schedule"
,“date”现在是“at”和“消息“现在是”文本“。
要安装插件,请使用以下命令:
cordova plugin add de.appplant.cordova.plugin.local-notification && cordova prepare
我已经安装了插件版本:0.8.1,在我的最后是0.7.4。
设置“声音”如下所示:
sound: "file://resources/audio/beep.mp3"
所以你的新方法将如下所示:
window.plugin.notification.local.add({ id: '0001', at: new Date, text: 'hello', title: 'title, badge: 1, sound: 'file://resources/audio/beep.mp3', autoCancel: true, ongoing: true });
它在iOS和Android设备上工作正常。 希望这会对你有所帮助:)