Specify a default launch screen for iOS Asteroids

This commit is contained in:
Chinmay Garde 2015-07-29 13:36:10 -07:00
parent d14eba080f
commit c87a7c6863
6 changed files with 6 additions and 2 deletions

View File

@ -113,7 +113,7 @@ template("sky_app") {
"$target_gen_dir/app.skyx",
]
resources += invoker.launcher_icons
resources += invoker.launcher_resources
bundle_directory = "."
deps = [ ":app" ]

View File

@ -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",
]
}
}

View File

@ -15,6 +15,9 @@
<key>CFBundleDisplayName</key>
<string>Asteroids</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>CFBundleIdentifier</key>
<string>org.domokit.sky.game</string>