Xcode not showing any Launch images sources

Following a 2 years old video about Xcode, I created app icons and launch images using fanstudio.co.uk/appicon. I then copied the app icons into this folder:
<my project> / Resources / Images.xcassets / AppIcon-1
And the launch images into this folder:
<my project> / Resources / Images.xcassets / LaunchImage
Then I was able to choose the app icons in Xcode: Project Navigator -> Targets -> General -> App Icons Source.
But I can't choose the launch images. There is nothing to choose from under "Launch Screen File:", and the "Launch Images Source:" option (shown in the video) is not there.

So how do I get my launch images into my Xcode project?

PS: Apple does not allow me to write the URL for the youtube video here, but it's called "iOS App in Python with Kivy - Part 15: App Icon and Launch Screen"...
Answered by HenrikRo in 671425022
I solved the problem the primitive way, by looking at the pixel-format of all the default launch image PNG-files in the LaunchImages folder under the Xcode project <my app>-ios folder and overwriting them one by one with my (PNG) launch images of the same pixels size... It works for now.
Accepted Answer
I solved the problem the primitive way, by looking at the pixel-format of all the default launch image PNG-files in the LaunchImages folder under the Xcode project <my app>-ios folder and overwriting them one by one with my (PNG) launch images of the same pixels size... It works for now.
Why didn't you just copy the png images in the resources of the project and insert them in LaunchScreen.storyboard ?
Good question. :-)
I guess I didn't really think about whether a "launchscreen storyboard" is a set of image files or what it is? :-)
"launchscreen storyboard" is a storyboard, with some limits

https ://useyourloaf. com/blog/using-a-launch-screen-storyboard/

The usual use is to have a single VC, with an imageView and some text. Very easy.
Xcode not showing any Launch images sources
 
 
Q