You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Run Script Phase necessary to compile the schema.json file and generate the API.swift file fails with the error: Couldn't find Apollo.framework in FRAMEWORK_SEARCH_PATHS; make sure to add the framework to your project.
I found that there is an extra space in the script that makes it fail. After removing the space, the build happens successfully:
The Run Script Phase necessary to compile the
schema.json
file and generate the API.swift file fails with the error:Couldn't find Apollo.framework in FRAMEWORK_SEARCH_PATHS; make sure to add the framework to your project.
I found that there is an extra space in the script that makes it fail. After removing the space, the build happens successfully:
This:
APOLLO_FRAMEWORK_PATH ="$(eval find ${QUOTED_FRAMEWORK_SEARCH_PATHS} -name "Apollo.framework" -maxdepth 1)"
Has to be changed to:
APOLLO_FRAMEWORK_PATH="$(eval find ${QUOTED_FRAMEWORK_SEARCH_PATHS} -name "Apollo.framework" -maxdepth 1)"
The text was updated successfully, but these errors were encountered: