简体   繁体   中英

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

Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '76x76' pixels, in .png format.

How to fix this. I'm using the same config.xml file for both android and ios app builds. 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. It seems to be a new thing with iOS 7 as I built my app using PhoneGap 3.1. I created images of these sizes and added this to my 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"/> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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