JerryZhou
JerryZhou

Reputation: 5206

codemagic keep build with error: '.../Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist' `

PS: I can use Xcode to build the version successfully.

I got the similar error when use codemagic. unable-to-load-contents-of-file-.

enter image description here

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.

enter image description here

Upvotes: 2

Views: 364

Answers (1)

Martin Jeret
Martin Jeret

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

Related Questions