Reputation: 5206
PS: I can use Xcode to build the version successfully.
I got the similar error when use codemagic. unable-to-load-contents-of-file-.
After made the changed mentioned in the above link.
I got build error in codemagic, but didn't should any message releated to build error.
Upvotes: 2
Views: 364
Reputation: 80
you can try to update your pods to match the new version or downgrade pods with the following custom script:
#!/bin/sh
set -e # exit on first failed command
set -x # print all executed commands to the terminal
yes | gem uninstall cocoapods -v 1.7.2 || true
gem install cocoapods -v 1.6.1
One tip to show more logs is to enter -v
or --verbose
to build arguments in the build section.
Upvotes: 2