1

In my iOS project i have put iOS 7.1 as Deployment Target, but know i have this warning:

Applications using Launch Screen Files and targeting iOS 7.1 and earlier need 
to also include a Launch Image in an Asset Catalog.

i have add in the images.xcassets the LaunchImage Folder, and i have add the Launch Image for the 4-inch screen, but i still have the warning, how i can do to solve it?

thanks

EDIT: this is the target setting:

enter image description here

Piero
  • 9,173
  • 18
  • 90
  • 160
  • Have you set the `Launch Images Source` into the target settings? – rckoenes Nov 17 '14 at 15:48
  • i have edited the question, i have to use the asset catalog? but using this the iOS 8 use anyway the LaunchScreen? – Piero Nov 17 '14 at 15:53
  • possible duplicate of [Xcode 6.1 Warning about Launch Image in Asset Catalog](http://stackoverflow.com/questions/26881474/xcode-6-1-warning-about-launch-image-in-asset-catalog) – Bryan Jan 18 '15 at 12:09

1 Answers1

6

You have not set the launch Images Source so iOS 7 has now idea where to get the images from.

Set this to asset catalog where you have added the launch screens, iOS 8 will use the Launch Screen File if both are set.

rckoenes
  • 69,092
  • 8
  • 134
  • 166