JibW
JibW

Reputation: 4562

ERROR ITMS-90096: "Your binary is not optimized for iPhone 5"

I am trying to upload my iPhone app as a new version and getting the following error message when upload the IPA file in to the 'Loader' Application...

App was developed in Xcode 6 using swift...

enter image description here

I have defined "App Icons and Launch Image" section settings as follows

enter image description here

Idea is to Use storyboard "Initial View Controller" as the "Launch Screen"...

Would be grateful if anyone can guide me in getting this done. Thanks..

Upvotes: 0

Views: 4088

Answers (2)

Matthys Du Toit
Matthys Du Toit

Reputation: 2400

LaunchScreen is only suppored from iOS8 upwards, so if you want to target iOS7 as well you need to specify the various launch images in their correct dimensions.

Specifically for this very error, ensure that you populate the image catalog for all the Portrait iPhone options in all the iOS versions that you want to support.

enter image description here

Upvotes: 0

Cloy
Cloy

Reputation: 2181

I got the same error.

1.I created a new storyboard file as LaunchScreen.

2.Target of my project -> App Icon and Launch Images -> Change the Launch Screen File to the newly created LaunchScreen storyboard.

3.Save, Build and Archived

This thing worked for me.Hope this helps you to.

Upvotes: 2

Related Questions