Phonegap构建压缩应用程序一旦编译?它为什么这样做?

时间:2016-02-10 15:45:30

标签: javascript ios xml cordova adobe

我正在为一家公司创建他们的应用程序并使用PhoneGap来创建应用程序。我将正确的组件上传到Adobe的phonegap构建服务,并在我的iPhone 6+上下载了IPA文件。但是,当我启动它时,它看起来像这样:

enter image description here

正如你所看到的应用程序被极度压扁,但在iOS的官方phonegap应用程序上它完美无缺地运行;因此让我相信它与我的文件结构或XML文件有关。如果有人可以指出我正确的方向来修复它会很棒。

1 个答案:

答案 0 :(得分:2)

您需要在config.xml中使用正确的启动画面。如果你没有定义它们,你会得到一个更小的屏幕。

    <gap:splash gap:platform="ios" width="640" height="1136"  src="splash_iphone_5.png" />
    <gap:splash gap:platform="ios" width="750" height="1334"  src="splash_iphone_6.png" />
    <gap:splash gap:platform="ios" width="1242" height="2208"  src="splash_iphone_6p.png" />

也许你也错过了<preference name="fullscreen" value="true" />