Skip to content

Commit

Permalink
Clean up for Tic-Tac-Toe updates (pointfreeco#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis committed Jul 29, 2021
1 parent 55cf912 commit 7a19bd6
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 4 deletions.
48 changes: 48 additions & 0 deletions Examples/TicTacToe/App/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<false/>
</dict>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
File renamed without changes.
File renamed without changes.
10 changes: 6 additions & 4 deletions Examples/TicTacToe/TicTacToe.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,23 +38,23 @@
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
CA6AC25C2450FDB800C71CB3 /* Sources */ = {
CA6AC25C2450FDB800C71CB3 /* App */ = {
isa = PBXGroup;
children = (
CA0A579E242AA7F800BA537D /* RootView.swift */,
CA0A5765242AA3A800BA537D /* TicTacToeApp.swift */,
CA0A5769242AA3A900BA537D /* Assets.xcassets */,
);
path = Sources;
path = App;
sourceTree = "<group>";
};
DC9193ED2420104100A5BE1F = {
isa = PBXGroup;
children = (
DCB9E9FD26B207CD00497C03 /* tic-tac-toe */,
DCB9EA3D26B2188200497C03 /* README.md */,
CA0A5769242AA3A900BA537D /* Assets.xcassets */,
CA6AC25C2450FDB800C71CB3 /* App */,
DC9193F72420104100A5BE1F /* Products */,
CA6AC25C2450FDB800C71CB3 /* Sources */,
);
sourceTree = "<group>";
};
Expand Down Expand Up @@ -156,6 +156,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic;
ENABLE_PREVIEWS = YES;
INFOPLIST_FILE = App/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -173,6 +174,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic;
ENABLE_PREVIEWS = YES;
INFOPLIST_FILE = App/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down

0 comments on commit 7a19bd6

Please sign in to comment.