我已成功签署,构建和部署我的黑莓应用程序(使用phonegap / cordova 2.7.0)到设备。然而,问题是它被卡在启动画面上。设备日志中没有明显错误。我目前只针对OS 7及以下版本。
另外,我应该提一下,我将默认的“开始屏幕”从index.html更改为我服务器上的另一个索引页。
有人知道问题是什么吗?
答案 0 :(得分:0)
如果您使用远程源运行应用程序,例如从您的WAMP / XAMP / MAMP服务器运行,您需要确保已在config.xml中将该域列入白名单,如下所示:
<!-- point to your source code -->
<content src="http://192.168.0.100/index.html"></content>
<!-- whitelist remote ip, and api's needed -->
<access uri="http://192.168.0.100" subdomains="true">
<feature id="blackberry.app"/>
<feature id="blackberry.invoke"/>
<feature id="blackberry.invoke.card"/>
</access>