我的IOS应用程序是使用phonegap构建创建的,该构建未显示其Icon / Launch Image。
我在res / icon / ios文件夹中包含大小为57*57, 114*114, 40*40, 80*80, 120*120, 50*50, 100*100, 60*60, 120*120, 180*180, 72*72, 144*144, 76*76, 152*152, 29*29, 58*58, 87*87
的图标图像。具有图标图像路径的配置文件是
<icon src="icon.png"/>
<platform name="ios">
<icon src="res/icon/ios/icon.png" width="57" height="57"/>
<icon src="res/icon/ios/icon@2x.png" width="114" height="114"/>
<icon src="res/icon/ios/icon-40.png" width="40" height="40"/>
<icon src="res/icon/ios/icon-40@2x.png" width="80" height="80"/>
<icon src="res/icon/ios/icon-50.png" width="50" height="50"/>
<icon src="res/icon/ios/icon-50@2x.png" width="100" height="100"/>
<icon src="res/icon/ios/icon-60.png" width="60" height="60"/>
<icon src="res/icon/ios/icon-60@2x.png" width="120" height="120"/>
<icon src="res/icon/ios/icon-60@3x.png" width="180" height="180"/>
<icon src="res/icon/ios/icon-72.png" width="72" height="72"/>
<icon src="res/icon/ios/icon-72@2x.png" width="144" height="144"/>
<icon src="res/icon/ios/icon-76.png" width="76" height="76"/>
<icon src="res/icon/ios/icon-76@2x.png" width="152" height="152"/>
<icon src="res/icon/ios/icon-small.png" width="29" height="29"/>
<icon src="res/icon/ios/icon-small@2x.png" width="58" height="58"/>
<icon src="res/icon/ios/icon-small@3x.png" width="87" height="87"/>
<icon height="87" src="res/icon/ios/icon-87.png" width="87" />
<icon height="58" src="res/icon/ios/icon-58.png" width="58" />
我的www文件夹结构是
和res / icon / ios结构
但是Ios构建版本完全忽略了这个图标图像。 我使用build.phonegap.com创建ipa文件,并检查图标图像,我提取这个ipa文件,然后得到像Payload / ShreeMedical.app这样的文件结构,包含各种大小的AppIcon和LaunchImages,但都是黑色图像而不是我的图标图像。 Untitled.png如何解决这个问题。