简体   繁体   English

将IPA文件提交到iTunes Connect

[英]Submit ipa file to itunes connect

I build an ipa using adobe.phonegap.build Now I want to submit this file to itunesconnect using Appliction Loader.while submitting ipa in the application loader I'm getting errors 我使用adobe.phonegap.build构建了一个ipa现在,我想使用adobe.phonegap.build将此文件提交到itunesconnect。在应用程序加载器中提交ipa时出现错误

Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '76x76' pixels, in .png format. 缺少推荐的图标文件-该捆绑包不包含.png格式的iPad应用程序图标,其像素恰好为“ 76x76”。

How to fix this. 如何解决这个问题。 I'm using the same config.xml file for both android and ios app builds. 我正在为androidios应用程序构建使用相同的config.xml文件。 Please help me. 请帮我。

Have a look at this post , looks like he had the same problem. 看一下这个帖子 ,看起来他有同样的问题。 Looks like you images inside your project, where the size is wrong or some of them are missing. 看起来像您的项目内的图像,大小错误或其中一些图像丢失。 Like apple lists the icons they need, you should be sure you have all pictures inside your project. 就像苹果列出了他们所需的图标一样,您应该确保项目中包含所有图片。

Somebody else just posted this: 有人刚刚发布了这个:

I just encountered the warning for the image sizes of 76x76, 120x120, and 152x152. 我刚遇到76x76、120x120和152x152图像尺寸的警告。 It seems to be a new thing with iOS 7 as I built my app using PhoneGap 3.1. 当我使用PhoneGap 3.1构建应用程序时,iOS 7似乎是新事物。 I created images of these sizes and added this to my config.xml: 我创建了这些大小的图像,并将其添加到我的config.xml中:

<icon src="images/icon-certify-76.png" gap:platform="ios" width="76" height="76"/> 
<icon src="images/icon-certify-120.png" gap:platform="ios" width="120" height="120"/> 
<icon src="images/icon-certify-152.png" gap:platform="ios" width="152" height="152"/> 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM