我的cordova版本为7.1.0
,cordova-ios版本为4.5.3
当我尝试使用ApplicationLoader将我的应用程序上传到appstore时,它会返回
错误ITMS-90032:"图像路径无效 - 在密钥' CFBundleIcons':' AppIcon83.5.x83.5''' AppIcon83.5.x83.5''' 34;
以下是config.xml
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<icon height="180" src="res/icon/ios/icon-60@3x.png" width="180" />
<icon height="60" src="res/icon/ios/icon-60.png" width="60" />
<icon height="120" src="res/icon/ios/icon-60@2x.png" width="120" />
<icon height="76" src="res/icon/ios/icon-76.png" width="76" />
<icon height="152" src="res/icon/ios/icon-76@2x.png" width="152" />
<icon height="40" src="res/icon/ios/icon-40.png" width="40" />
<icon height="80" src="res/icon/ios/icon-40@2x.png" width="80" />
<icon height="57" src="res/icon/ios/icon.png" width="57" />
<icon height="114" src="res/icon/ios/icon@2x.png" width="114" />
<icon height="72" src="res/icon/ios/icon-72.png" width="72" />
<icon height="144" src="res/icon/ios/icon-72@2x.png" width="144" />
<icon height="167" src="res/icon/ios/icon-167.png" width="167" />
<icon height="29" src="res/icon/ios/icon-small.png" width="29" />
<icon height="58" src="res/icon/ios/icon-small@2x.png" width="58" />
<icon height="87" src="res/icon/ios/icon-small@3x.png" width="87" />
<icon height="50" src="res/icon/ios/icon-50.png" width="50" />
<icon height="100" src="res/icon/ios/icon-50@2x.png" width="100" />
<icon height="167" src="res/icon/ios/icon-83.5@2x.png" width="167" />
</platform>
我可以通过xcode或cordova cli在模拟器中成功构建和运行应用程序。
我已尝试删除node_modules
,platforms
,plugins
个文件夹,然后重新安装并重新添加ios平台等......几次但没有帮助无论是。
不确定发生了什么。有人可以帮忙吗?
答案 0 :(得分:0)
好的,问题是您的应用程序图标大小为83.5x83.5,缺少。我可以在config.xml文件中看到它的双倍大小图标。请同时包含该图标。
您可以手动添加应用程序图标并在config.xml文件中对其进行编辑
尝试使用此解决方案上传您的应用。