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

前端 未结 17 2055
暗喜
暗喜 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 03:45

    From iOS9, you should add launch images to your project root, not Images.xcassets folder. And set your launch images in info.plist with key UILaunchImages, for my example:

    UILaunchImages
    
        
            UILaunchImageMinimumOSVersion
            7.1
            UILaunchImageName
            iPhone5Portrait
        
        
            UILaunchImageMinimumOSVersion
            7.1
            UILaunchImageName
            iPhone6Portrait
        
    
    

提交回复
热议问题