diff --git a/examples/stocks/BUILD.gn b/examples/stocks/BUILD.gn index d1484fdd5e4..814adf3a10f 100644 --- a/examples/stocks/BUILD.gn +++ b/examples/stocks/BUILD.gn @@ -10,5 +10,10 @@ sky_app("stocks") { if (is_android) { apk_name = "Stocks" + } else if (is_ios) { + info_plist = "ios/Info.plist" + launcher_resources = [ + "ios/LaunchScreen.storyboardc", + ] } } diff --git a/examples/stocks/ios/Info.plist b/examples/stocks/ios/Info.plist new file mode 100644 index 00000000000..52da94f6456 --- /dev/null +++ b/examples/stocks/ios/Info.plist @@ -0,0 +1,58 @@ + + + + + CFBundleDevelopmentRegion + en + + + CFBundleExecutable + stocks_app + + CFBundleDisplayName + Stocks + + UILaunchStoryboardName + LaunchScreen + + CFBundleIdentifier + com.google.stocks + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + game_app + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UIRequiredDeviceCapabilities + + armv7 + + DTPlatformName + iphonesimulator + DTSDKName + iphonesimulator8.3 + LSRequiresIPhoneOS + + MinimumOSVersion + 7.0 + UIDeviceFamily + + 1 + 2 + + CFBundleSupportedPlatforms + + iPhoneSimulator + + + diff --git a/examples/stocks/ios/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/examples/stocks/ios/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 00000000000..1aa489da116 Binary files /dev/null and b/examples/stocks/ios/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/examples/stocks/ios/LaunchScreen.storyboardc/Info.plist b/examples/stocks/ios/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 00000000000..32288e88f6e Binary files /dev/null and b/examples/stocks/ios/LaunchScreen.storyboardc/Info.plist differ diff --git a/examples/stocks/ios/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/examples/stocks/ios/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 00000000000..8de9beddcb7 Binary files /dev/null and b/examples/stocks/ios/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ