Answering my own question here. I solved the probl...
# multiplatform
c
Answering my own question here. I solved the problem by updating the FRAMEWORK_SEARCH_PATHS from:
Copy code
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../shared/build/xcode-frameworks";
to:
Copy code
FRAMEWORK_SEARCH_PATHS = (
 					"$(inherited)",
 					"\"${PODS_ROOT}/../../shared/build/cocoapods/framework\"",
 				);
Also, my shared framework reference was wrong in .pbxproj. I updated from:
Copy code
7555FFB1242A642300829871 /* shared.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = shared.framework; path = "../shared/build/xcode-frameworks/shared.framework"; sourceTree = "<group>"; };
to
Copy code
7555FFB1242A642300829871 /* shared.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = shared.framework; path = ../shared/build/cocoapods/framework/shared.framework; sourceTree = "<group>"; };
and now it's working 😄
❤️ 1