Skip to content

Commit 1096c00

Browse files
committed
fix: Remove 'shortcut' appearance in Xcode Project Navigator
PROBLEM: - PBXFileSystemSynchronizedRootGroup with path = '.' created a 'shortcut' appearance - Displayed as '.' instead of proper folder name in Xcode - Confusing for developers SOLUTION: - Changed group name from '.' to 'AudioKeeper' - Updated all references to use proper name - Now displays as normal folder in Project Navigator This makes the project structure clearer and more intuitive in Xcode's Project Navigator while maintaining the same file synchronization functionality.
1 parent 6bdc2ca commit 1096c00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

AudioKeeper.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/* End PBXFileReference section */
1313

1414
/* Begin PBXFileSystemSynchronizedRootGroup section */
15-
17D747FD2E848B5F001A632E /* . */ = {
15+
17D747FD2E848B5F001A632E /* AudioKeeper */ = {
1616
isa = PBXFileSystemSynchronizedRootGroup;
1717
path = .;
1818
sourceTree = "<group>";
@@ -38,7 +38,7 @@
3838
17D747F22E848B5F001A632E = {
3939
isa = PBXGroup;
4040
children = (
41-
17D747FD2E848B5F001A632E /* . */,
41+
17D747FD2E848B5F001A632E /* AudioKeeper */,
4242
17D747FC2E848B5F001A632E /* Products */,
4343
);
4444
sourceTree = "<group>";
@@ -67,7 +67,7 @@
6767
dependencies = (
6868
);
6969
fileSystemSynchronizedGroups = (
70-
17D747FD2E848B5F001A632E /* . */,
70+
17D747FD2E848B5F001A632E /* AudioKeeper */,
7171
);
7272
name = AudioKeeper;
7373
packageProductDependencies = (

0 commit comments

Comments
 (0)