After upgrading to Xcode 10.2 I am getting 2 errors
:-1: Unable to load contents of file list: \'xxxxx/Pods/Target Support Files/Pods-xxxx/Pods-xxx
I have the same issue and do the below steps and now am able to make build successful
go to Project->Configurations and set the valid configuration file for configuration.
if you see already set correct valid configuration file then do pod install
if you are not able see valid configuration file then pod install
and Now you can see the valid configuration file just choose the right one now.
Note : I have this issue on Xcode 11.7
For me, this was caused because I was setting up a custom configuration (.xcconfig) file for different environments.
I wasn't importing the Pods/Target Support Files/Pods-XXXXXX/Pods-XXXXXX.release.xcconfig
into my configuration file.
This guide helped me find the missing step. https://thoughtbot.com/blog/let-s-setup-your-ios-environments
Thanks Patrick.
To illustrate the answer of @nfranzmeier:
Go to your project:
[CP] Embed Pods Frameworks
script phaseInput Files Lists
and Output Files Lists
sections by selecting each of them and clicking on the -
buttonAnd you're done!
pod deintegrate
pod install
it's work for me
I have encountered this problem every time, using the above method to solve, I do not know why, how to completely solve
You can just edit your xxxx.xcodeproj/project.pbxproj file and delete the offending lines xxxinput-files.xcfilelist and xxxoutput-files.xcfilelist from the inputFileListPaths() outputFileListPaths() so they're empty again and then save it and rebuild