Vanessa Leung
Vanessa Leung

Reputation: 810

error: Unable to load contents of file list: '/Target Support Files/Pods-xx/Pods-xx-frameworks-Debug-input-files.xcfilelist' (in target 'xx')

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.

My Target -> Build Phases: enter image description here

[CP] Embed Pods Frameworks enter image description here

[CP] Copy Pods Resources enter image description here

Upvotes: 32

Views: 37566

Answers (3)

Mahfuz
Mahfuz

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

Igor Voynov
Igor Voynov

Reputation: 731

pod deintegrate

then

pod update

Upvotes: 63

Vanessa Leung
Vanessa Leung

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.

enter image description here

Upvotes: 8

Related Questions