简体   繁体   English

在iTunes上加载应用程序时,iPad / iPhone上缺少图标连接libgdx

[英]lack of icons for iPad/iPhone when loading an app on itunes connect libgdx

EDIT: SOLUTION IN THE ANSWER 编辑:答案中的解决方案

I just uploaded an application made ​​in libgdx on itunes connect , and my problem is that I get this email : 我刚刚在itunes connect上传了一个用libgdx制作的应用程序,我的问题是我收到了这封电子邮件:

Dear developer, 亲爱的开发者,

We have discovered one or more issues with your recent delivery for "Surf Survivor". 我们发现您最近交付的“Surf Survivor”存在一个或多个问题。 Your delivery was successful, but you may wish to correct the following issues in your next delivery: 您的投放成功,但您可能希望在下次投放时更正以下问题:

Missing recommended icon file - The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format for iOS versions >= 7.0. 缺少推荐的图标文件 - 该软件包不包含完全'120x120'像素的iPhone / iPod Touch应用程序图标,iOS版本的.png格式> = 7.0。

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

Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '152x152' pixels, in .png format for iOS versions >= 7.0. 缺少推荐的图标文件 - 该软件包不包含iPad的“152x152”像素的应用程序图标,iOS版本的.png格式> = 7.0。

After you've corrected the issues, you can use Xcode or Application Loader to upload a new binary to iTunes Connect. 纠正问题后,您可以使用Xcode或Application Loader将新二进制文件上传到iTunes Connect。

Regards, 问候,

The App Store team App Store团队

Now , I've already added (Icon-76.png Icon-120.png Icon-152.png) to the folders of icons giving them as image name names there are in the text of the email , I reloaded the app but the error persists . 现在,我已经将(Icon-76.png Icon-120.png Icon-152.png)添加到图标文件夹中,将它们作为电子邮件文本中的图像名称,我重新加载了应用程序但是错误仍然存​​在。 how can I solve it ? 我怎么解决呢? how to add these images to project libgdx ? 如何将这些图像添加到项目libgdx? thank you 谢谢

SOLUTION

add this: 添加这个:

<key>CFBundleIcons</key>
<dict>
    <key>CFBundlePrimaryIcon</key>
    <dict>
        <key>CFBundleIconFiles</key>
        <array>
            <string>Icon</string>
            <string>Icon-72</string>
            <string>Icon-76</string>  //add here
            <string>Icon-120</string> //add here
            <string>Icon-152</string> //add here
        </array>
    </dict>
</dict>

inside the file project\\ios\\info.plist.xml 在文件project \\ ios \\ info.plist.xml中

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

相关问题 Apple在iPhone应用程序上要求iPad截图(在iTunes Connect中)? - Apple asking for iPad screenshot (in iTunes Connect) on iPhone app? iTunes和iPhone上的通用应用程序可见性 - Visibility of Universal app on iTunes for iPhone and iPad Itunes Connect将桌面显示为ipad应用程序的平台 - Itunes Connect shows desktop as platform for ipad app 如何为通用iPhone / iPad应用程序指定图标? - How to specify icons for a universal iPhone/iPad app? 同一iPhone / iPad App的两个版本的图标 - Icons for two versions of the same iPhone/iPad App iOS 7:iPhone应用程序的正确iPad图标? - iOS 7: Proper iPad icons for iPhone app? 即使项目仅适用于 iphone,iTunes 连接屏幕截图也需要 ipad - Itunes connect screenshots require ipad even though project only for iphone iTunes Connect需要针对非iPhone5应用的iPhone 5屏幕截图 - iTunes Connect requires iPhone 5 screenshots for non-iPhone5 app 我的应用程序不是很长的支持ipad,当我上传我的应用程序时,它导致Xcode或iTunes Connect错误地拒绝我的更新 - My app is no long suport ipad, when I upload my app it cause Xcode or iTunes Connect to erroneously reject my update Xcode - 仅限iPhone,验证抱怨iPad图标问题和iTunes Connect抱怨iPad屏幕截图 - Xcode - iPhone only, Validation complaining of iPad icon issues and iTunes Connect complaining of iPad screenshots
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM