Roduck Nickes
Roduck Nickes

Reputation: 1021

Your binary is not optimized for iPhone 5 - (ERROR ITMS-90096)

I get this error when trying to archive my application:

enter image description here

I don't understand, because I am not using LaunchImage in my application.

My settings looks like this: enter image description here

Any suggestions on what I can do here?

Upvotes: 0

Views: 1888

Answers (1)

rmaddy
rmaddy

Reputation: 318814

It's because your Deployment Target is set to iOS 7.0.

A Launch Screen File is only supported for iOS 8.0 and later.

In order to support iOS 7 you must provide launch images. You can keep the Launch Screen file too but it will only be used on devices running iOS 8.0 and later.

So setup the asset catalog for the Launch Images Source and add the needed set of launch images for iOS 7.

Of course your other option is to drop support for iOS 7 then your use of the Launch Screen File will be sufficient.

Upvotes: 5

Related Questions