Hi!
We have a discussion about where we should put our in-house framework.
At first we try ./Library folder.
Our framework doesn't have Info.plist file and it is generated from Go source.
Cmd + B was successful, but Running app in simulator ends with following error:
This app could not be installed at this time.
Could not install at this time.
Failed to load Info.plist from bundle at path .../CoreSimulator/Devices/8C671053-E54B-44D5-A9BC-966D45C0A5B1/data/Libst: ACL=
After googling and inspecting git diff, I've found interesting change:
FRAMEWORK_SEARCH_PATH contains $(PROJECT_DIR)$(LOCAL_LIBRARY_DIR)
Solution
Changing this setting FRAMEWORK_SEARCH_PATH to $(PROJECT_DIR)/Library.
Observation
I inspect this variable in xcodebuild:
xcodebuild -showBuildSettings | grep LOCAL_LIB
LOCAL_LIBRARY_DIR = /Library
Question
Could anybody tell what is going on and why Xcode treat local folder "./Library" in this special case?