@vadimwe 's answer is correct, and I updated my Podfile like this to edit automatically when you run pod install .
post_install do |installer|
command = <<~EOS
find . -name *frameworks.sh | tr \\n \\0 | xargs -0 sed -i -e 's/source="$(readlink "${source}")"/source="$(readlink -f "${source}")"/'
EOS
system(command)
end
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags: