Google Play被拒绝,因为它允许在按下主页按钮或切换到其他应用程序后在后台播放YouTube视频。
我尝试使用shouldPauseOnSuspend属性来阻止这种情况,但它似乎不起作用。 我正在使用最新版本的Cordova InAppBrowser插件(7.0.1)
<preference name="shouldPauseOnSuspend" value="yes" />
在config.xml中
任何建议都会有所帮助!
答案 0 :(得分:0)
在config.xml中未使用首选项设置shouldPauseOnSuspend。相反,在调用内置浏览器的shouldPauseOnSuspend=yes
方法时,需要在选项内设置open
。请参见此处的文档:https://github.com/apache/cordova-plugin-inappbrowser。
类似的事情会起作用:
window.open('http://google.com','_blank', 'shouldPauseOnSuspend=yes');