Skip to content

Commit 4c625a6

Browse files
stephencelismluisbrown
authored andcommitted
Clean up for Tic-Tac-Toe updates (#685)
1 parent 28b93b8 commit 4c625a6

File tree

7 files changed

+54
-4
lines changed

7 files changed

+54
-4
lines changed

Examples/TicTacToe/App/Info.plist

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>1</string>
21+
<key>LSRequiresIPhoneOS</key>
22+
<true/>
23+
<key>UIApplicationSceneManifest</key>
24+
<dict>
25+
<key>UIApplicationSupportsMultipleScenes</key>
26+
<false/>
27+
</dict>
28+
<key>UILaunchStoryboardName</key>
29+
<string>LaunchScreen</string>
30+
<key>UIRequiredDeviceCapabilities</key>
31+
<array>
32+
<string>armv7</string>
33+
</array>
34+
<key>UISupportedInterfaceOrientations</key>
35+
<array>
36+
<string>UIInterfaceOrientationPortrait</string>
37+
<string>UIInterfaceOrientationLandscapeLeft</string>
38+
<string>UIInterfaceOrientationLandscapeRight</string>
39+
</array>
40+
<key>UISupportedInterfaceOrientations~ipad</key>
41+
<array>
42+
<string>UIInterfaceOrientationPortrait</string>
43+
<string>UIInterfaceOrientationPortraitUpsideDown</string>
44+
<string>UIInterfaceOrientationLandscapeLeft</string>
45+
<string>UIInterfaceOrientationLandscapeRight</string>
46+
</array>
47+
</dict>
48+
</plist>

Examples/TicTacToe/TicTacToe.xcodeproj/project.pbxproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,23 +38,23 @@
3838
/* End PBXFrameworksBuildPhase section */
3939

4040
/* Begin PBXGroup section */
41-
CA6AC25C2450FDB800C71CB3 /* Sources */ = {
41+
CA6AC25C2450FDB800C71CB3 /* App */ = {
4242
isa = PBXGroup;
4343
children = (
4444
CA0A579E242AA7F800BA537D /* RootView.swift */,
4545
CA0A5765242AA3A800BA537D /* TicTacToeApp.swift */,
46+
CA0A5769242AA3A900BA537D /* Assets.xcassets */,
4647
);
47-
path = Sources;
48+
path = App;
4849
sourceTree = "<group>";
4950
};
5051
DC9193ED2420104100A5BE1F = {
5152
isa = PBXGroup;
5253
children = (
5354
DCB9E9FD26B207CD00497C03 /* tic-tac-toe */,
5455
DCB9EA3D26B2188200497C03 /* README.md */,
55-
CA0A5769242AA3A900BA537D /* Assets.xcassets */,
56+
CA6AC25C2450FDB800C71CB3 /* App */,
5657
DC9193F72420104100A5BE1F /* Products */,
57-
CA6AC25C2450FDB800C71CB3 /* Sources */,
5858
);
5959
sourceTree = "<group>";
6060
};
@@ -156,6 +156,7 @@
156156
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
157157
CODE_SIGN_STYLE = Automatic;
158158
ENABLE_PREVIEWS = YES;
159+
INFOPLIST_FILE = App/Info.plist;
159160
LD_RUNPATH_SEARCH_PATHS = (
160161
"$(inherited)",
161162
"@executable_path/Frameworks",
@@ -173,6 +174,7 @@
173174
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
174175
CODE_SIGN_STYLE = Automatic;
175176
ENABLE_PREVIEWS = YES;
177+
INFOPLIST_FILE = App/Info.plist;
176178
LD_RUNPATH_SEARCH_PATHS = (
177179
"$(inherited)",
178180
"@executable_path/Frameworks",

0 commit comments

Comments
 (0)