Skip to content

Commit 49ba56b

Browse files
tom-unmicrosoft-github-bot[bot]
authored andcommitted
Add a WorkspaceSettings.xcsettings in the RNTester project to turn off new Xcode build system. (#15)
* Added WorkspaceSettings.xcsettings file to RNTester.xcodeproj to ensure project builds from IDE using legacy build system instead of new build system which RN is not compatible with.: * Unsaved changes
1 parent eeda5fc commit 49ba56b

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ DerivedData
1919
*.hmap
2020
*.ipa
2121
*.xcuserstate
22-
project.xcworkspace
22+
# exclude project.xcworkspace except for xcshareddata/WorkspaceSettings.xcsettings
23+
project.xcworkspace/*
24+
**/project.xcworkspace/contents.xcworkspacedata
25+
**/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
2326

2427
# Gradle
2528
/build/
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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>BuildSystemType</key>
6+
<string>Original</string>
7+
</dict>
8+
</plist>

0 commit comments

Comments
 (0)