Skip to content

Commit aeeda67

Browse files
alexvbushclaude
andcommitted
Fix INFOPLIST_FILE paths in ios/RIBs.xcodeproj after the move
Moving the Carthage project under ios/ (#55) rehomed the group paths but left the RIBs and RIBsTests INFOPLIST_FILE build settings pointing at `RIBs/Info.plist` / `RIBsTests/Info.plist`, which now resolve to non-existent `ios/RIBs/...` paths and break `carthage build` (exit 65, missing build input file). CI did not catch it because only Carthage builds this project — SPM uses Package.swift and the Example build uses its own project. Point them one level up (`../RIBs/Info.plist`, `../RIBsTests/Info.plist`). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01J9mruKG6RSYg6SfPaq6MPG
1 parent d29015a commit aeeda67

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

ios/RIBs.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@
598598
"$(inherited)",
599599
"$(PRODUCTS_DIR)../Carthage/Build/iOS/",
600600
);
601-
INFOPLIST_FILE = RIBs/Info.plist;
601+
INFOPLIST_FILE = ../RIBs/Info.plist;
602602
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
603603
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
604604
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
@@ -625,7 +625,7 @@
625625
"$(inherited)",
626626
"$(PRODUCTS_DIR)../Carthage/Build/iOS/",
627627
);
628-
INFOPLIST_FILE = RIBs/Info.plist;
628+
INFOPLIST_FILE = ../RIBs/Info.plist;
629629
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
630630
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
631631
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
@@ -646,7 +646,7 @@
646646
"$(inherited)",
647647
"$(PRODUCTS_DIR)../Carthage/Build/iOS/",
648648
);
649-
INFOPLIST_FILE = RIBsTests/Info.plist;
649+
INFOPLIST_FILE = ../RIBsTests/Info.plist;
650650
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
651651
PRODUCT_BUNDLE_IDENTIFIER = com.uber.RIBsTests;
652652
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -664,7 +664,7 @@
664664
"$(inherited)",
665665
"$(PRODUCTS_DIR)../Carthage/Build/iOS/",
666666
);
667-
INFOPLIST_FILE = RIBsTests/Info.plist;
667+
INFOPLIST_FILE = ../RIBsTests/Info.plist;
668668
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
669669
PRODUCT_BUNDLE_IDENTIFIER = com.uber.RIBsTests;
670670
PRODUCT_NAME = "$(TARGET_NAME)";

0 commit comments

Comments
 (0)