Reputation: 810
XCode Version 10.2.1
error: Unable to load contents of file list: '/Target Support Files/Pods-SMarket/Pods-SMarket-frameworks-Debug-input-files.xcfilelist' (in target 'SMarket')
error: Unable to load contents of file list: '/Target Support Files/Pods-SMarket/Pods-SMarket-frameworks-Debug-output-files.xcfilelist' (in target 'SMarket')
error: Unable to load contents of file list: '/Target Support Files/Pods-SMarket/Pods-SMarket-resources-Debug-input-files.xcfilelist' (in target 'SMarket')
error: Unable to load contents of file list: '/Target Support Files/Pods-SMarket/Pods-SMarket-resources-Debug-output-files.xcfilelist' (in target 'SMarket')
I tried this solution, not working.
I tried to clean, rebuild the project, still failed.
No idea which part generates these errors, please comment if I need to show details of specific files.
Upvotes: 32
Views: 37566
Reputation: 93
In my case:
pod deintegrate
pod clean
pod install
With rebuild, the project works.
My XCode version is 11.3.1
Upvotes: 2
Reputation: 810
I found out under [CP] Embed Pods Frameworks
and [CP] Copy Pods Resources
, there're input files and output files sections. Just deleted files in those sections, and it works.
But I still have no idea why this error is generated.
Upvotes: 8