diff --git a/sky/build/sky_app.gni b/sky/build/sky_app.gni index ce9664430ef..3d739151b29 100644 --- a/sky/build/sky_app.gni +++ b/sky/build/sky_app.gni @@ -113,7 +113,7 @@ template("sky_app") { "$target_gen_dir/app.skyx", ] - resources += invoker.launcher_icons + resources += invoker.launcher_resources bundle_directory = "." deps = [ ":app" ] diff --git a/sky/packages/sky/example/game/BUILD.gn b/sky/packages/sky/example/game/BUILD.gn index ba22f659774..cceaf0ab9c6 100644 --- a/sky/packages/sky/example/game/BUILD.gn +++ b/sky/packages/sky/example/game/BUILD.gn @@ -16,9 +16,10 @@ sky_app("game") { ] } else if (is_ios) { info_plist = "ios/Info.plist" - launcher_icons = [ + launcher_resources = [ "assets/Icon.png", "assets/Icon@2x.png", + "ios/LaunchScreen.storyboardc", ] } } diff --git a/sky/packages/sky/example/game/ios/Info.plist b/sky/packages/sky/example/game/ios/Info.plist index c40a1ba8657..de1d8efa587 100644 --- a/sky/packages/sky/example/game/ios/Info.plist +++ b/sky/packages/sky/example/game/ios/Info.plist @@ -15,6 +15,9 @@ CFBundleDisplayName Asteroids + UILaunchStoryboardName + LaunchScreen + CFBundleIdentifier org.domokit.sky.game diff --git a/sky/packages/sky/example/game/ios/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/sky/packages/sky/example/game/ios/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 00000000000..1aa489da116 Binary files /dev/null and b/sky/packages/sky/example/game/ios/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/sky/packages/sky/example/game/ios/LaunchScreen.storyboardc/Info.plist b/sky/packages/sky/example/game/ios/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 00000000000..32288e88f6e Binary files /dev/null and b/sky/packages/sky/example/game/ios/LaunchScreen.storyboardc/Info.plist differ diff --git a/sky/packages/sky/example/game/ios/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/sky/packages/sky/example/game/ios/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 00000000000..8de9beddcb7 Binary files /dev/null and b/sky/packages/sky/example/game/ios/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ