当我在iPad Pro 12.9in的浏览器中使用桌面上的PhoneGap应用程序打开我的应用程序时,它会按预期打开。但是当我安装应用程序并打开它时,它会以较低的分辨率打开。我看到这可能是因为较低分辨率的spash屏幕,但我为iPad专业版设计了一个分辨率为2732x2048的新闪屏。
我是否应该在config.xml文件中更改某些内容?我已经尝试了很多但仍未找到解决方案。
These are the imported splash images for iOS with their resolutions
This is how the app looks when installed (1)
This is how the app looks when installed (2)
This is how the app should look - like it is now in the browser (1)
This is how the app should look - like it is now in the browser (2)
答案 0 :(得分:0)
您是否已将新的Splashscreen添加到config.xml中?
您需要该文件中的以下条目:
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<splash src="<your path>/Default@2x~universal~anyany.png" />
<splash src="<your path>/Default@2x~universal~comany.png" />
<splash src="<your path>/Default@2x~universal~comcom.png" />
<splash src="<your path>/Default@3x~universal~anyany.png" />
<splash src="<your path>/Default@3x~universal~anycom.png" />
<splash src="<your path>/Default@3x~universal~comany.png" />
</platform>
在我的情况下,路径为<project>/res/ios
要使用这些,您至少需要CLI 7.0.1或7.1.0来定位iOS Phonegap版本4.4.0
其他信息: