Skip to content

Commit f5c2dda

Browse files
committed
macos: Refresh project files by jiggling a setting in Xcode GUI
Xcode made the project.pbxproj changes when I changed the "macOS Deployment Target" setting in the GUI from 10.14 to 10.15 and back again. The Runner.xcscheme changes happened when I built the app to run. A quick test confirmed that 7649477 explains the change from "zulip.app" to "Zulip.app" (I tried a different string "asdfjkl" and saw that it propagated in the same way). Not sure what explains removing the "name = Pods;" line, but there's a "path = Pods;" line right under it, and anyway the app continues to build.
1 parent eb3e2aa commit f5c2dda

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

macos/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
1A6844CABCD767C3D34B3277 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
5757
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
5858
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
59-
33CC10ED2044A3C60003C045 /* zulip.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = zulip.app; sourceTree = BUILT_PRODUCTS_DIR; };
59+
33CC10ED2044A3C60003C045 /* Zulip.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Zulip.app; sourceTree = BUILT_PRODUCTS_DIR; };
6060
33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
6161
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
6262
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
@@ -94,7 +94,6 @@
9494
4ADDD444D9EC96A7EDC27F55 /* Pods-Runner.release.xcconfig */,
9595
1A6844CABCD767C3D34B3277 /* Pods-Runner.profile.xcconfig */,
9696
);
97-
name = Pods;
9897
path = Pods;
9998
sourceTree = "<group>";
10099
};
@@ -123,7 +122,7 @@
123122
33CC10EE2044A3C60003C045 /* Products */ = {
124123
isa = PBXGroup;
125124
children = (
126-
33CC10ED2044A3C60003C045 /* zulip.app */,
125+
33CC10ED2044A3C60003C045 /* Zulip.app */,
127126
);
128127
name = Products;
129128
sourceTree = "<group>";
@@ -194,7 +193,7 @@
194193
);
195194
name = Runner;
196195
productName = Runner;
197-
productReference = 33CC10ED2044A3C60003C045 /* zulip.app */;
196+
productReference = 33CC10ED2044A3C60003C045 /* Zulip.app */;
198197
productType = "com.apple.product-type.application";
199198
};
200199
/* End PBXNativeTarget section */

macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<BuildableReference
1616
BuildableIdentifier = "primary"
1717
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
18-
BuildableName = "zulip.app"
18+
BuildableName = "Zulip.app"
1919
BlueprintName = "Runner"
2020
ReferencedContainer = "container:Runner.xcodeproj">
2121
</BuildableReference>
@@ -31,7 +31,7 @@
3131
<BuildableReference
3232
BuildableIdentifier = "primary"
3333
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
34-
BuildableName = "zulip.app"
34+
BuildableName = "Zulip.app"
3535
BlueprintName = "Runner"
3636
ReferencedContainer = "container:Runner.xcodeproj">
3737
</BuildableReference>
@@ -55,7 +55,7 @@
5555
<BuildableReference
5656
BuildableIdentifier = "primary"
5757
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
58-
BuildableName = "zulip.app"
58+
BuildableName = "Zulip.app"
5959
BlueprintName = "Runner"
6060
ReferencedContainer = "container:Runner.xcodeproj">
6161
</BuildableReference>
@@ -72,7 +72,7 @@
7272
<BuildableReference
7373
BuildableIdentifier = "primary"
7474
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
75-
BuildableName = "zulip.app"
75+
BuildableName = "Zulip.app"
7676
BlueprintName = "Runner"
7777
ReferencedContainer = "container:Runner.xcodeproj">
7878
</BuildableReference>

0 commit comments

Comments
 (0)