Xcode Buildtime Error: 'Unable to load contents of file list: '.../Info.plist' (in target 'xxxx')
In my case, I just fixed below
- Open terminal under project folder
pod deintegrate
sudo gem install cocoapods-clean
pod clean
- Open the project and delete (if it's still there) the “Pods” folder that should be red
pod setup
(This may take some time)pod install
I fix this in this way:
1、Go to your project's target, -> Build Phases -> Embed Pods Frameworks
2、check the input files and input file lists, Output files, and output file lists.
3、move dir from input file lists to input files, and output file lists to output files
I realised after a while that my colleague has updated cocoapods to the latest version, so what I did was just
sudo gem install cocoapods
And that did the trick! :)