请注意我已经彻底搜查了所以请不要来这里告诉搜索。
其次,这与Phonegap Build有关!不是CLI!
问题: 我有一个音乐应用程序在线流式传输音乐,当按下主页或电源按钮,或者您导航到另一个应用程序时,音乐停止。回到应用程序时恢复。
我的音乐播放器是soundmanager2,一个html5 JavaScript应用。
我已将此信息包含在 config.xml :
中<gap:plugin name="de.appplant.cordova.plugin.background-mode" />
<gap:config-file platform="ios" parent="UIBackgroundModes" overwrite="true">
<array>
<string>audio</string>
</array>
</gap:config-file>
并在 index.html :
中对其进行了初始化 document.addEventListener('deviceready', function () {
cordova.plugins.backgroundMode.enable();
initPushwoosh();
StatusBar.overlaysWebView(false);
// window.plugin.notification.local is now available
}, false);
但它仍然做同样的事情。只有顺从是我看到锁屏上的播放按钮,但它不起作用或播放,但轨道网址是那里的音频。如果你明白我想说的话。
请帮忙。
答案 0 :(得分:0)
要关闭它,对于可能正在经历它的任何其他人:使用此插件。
<gap:plugin name="nl.kingsquare.cordova.background-audio" source="npm" />