Reputation: 1021
I get this error when trying to archive my application:
I don't understand, because I am not using LaunchImage in my application.
Any suggestions on what I can do here?
Upvotes: 0
Views: 1888
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