“Your binary is not optimized for iPhone 5” (ITMS-90096) when submitting

前端 未结 17 2062
暗喜
暗喜 2020-12-01 03:24

this is my first ios app and when i try to submit it to the app store it gives me the ITMS-90096 error.

\"error

17条回答
  •  不思量自难忘°
    2020-12-01 04:00

    Update August 2016

    When using Xcode 7+ and targeting iOS 8+ it is recommended to remove the .xib file and create a new LaunchScreen.storyboard by using the given template:

    And than setting it in the Project File under App Icons and Launch Images:


    Original October 2015 Answer

    So like @Aditya Deshmane I also use .xib file as my "Launch Image".

    Adding both Default-568.png and Default-568@2x.png to my root directory didn't solve my issue.

    I had to add the UILaunchImages key to my Info.plist:

    UILaunchImages
    
        
            UILaunchImageName
            Default-568
            UILaunchImageSize
            {320, 568}
        
    
    

    As described here: iOS Key UILaunchImages

提交回复
热议问题