Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to load contents of file list: '/Target Support Files/Pods-Target Name/Pods-Target Name-frameworks-Debug-input-files.xcfilelist'

I am getting two errors,

  1. Unable to load contents of file list: '/Target Support Files/Pods-Target Name/Pods-Target Name-frameworks-Debug-input-files.xcfilelist'
  2. Unable to load contents of file list: '/Target Support Files/Pods-Target Name/Pods-Target Name-frameworks-Debug-output-files.xcfilelist'

Following are the contents of my Podfile,

flutter_application_path = 'flutter module path'

load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')

target 'Target Name' do

install_all_flutter_pods(flutter_application_path)

end

I have a flutter module which I am using in my project. So for that I am integrating that flutter module through Podfile.

If anyone wants to know about how to embed flutter module in iOS project, Please refer this link https://flutter.dev/docs/development/add-to-app/ios/project-setup

I have tried following solutions,

  1. pod deintegrate & pod install
  2. Deleting pods folder, podfile.lock, and auto-generated project-name.xcworkspace. Then pod install
  3. Deleting the entries in Embed Pods Framework->InputFileLists & OutputFileLists-> Clean Build. (Upon doing this it gives another error of podfile.lock file not in sync. Please do pod install)
  4. Deleting derived data -> Clean Build.

I am using Xcode 12.2.

Thanks in advance.

like image 727
Yash Jadhav Avatar asked Dec 05 '25 13:12

Yash Jadhav


2 Answers

My solution was to pod deintegrate and pod install afterwards. Worked for Xcode Cloud pipeline.

like image 157
bqubique Avatar answered Dec 07 '25 11:12

bqubique


in my case i tried

1- pod repo update /pod deintegrate / pod install with no success then i noticed that inside my Runner>Flutter both Debug.xcconfig and Release.xcconfig are missing so i copied both files from older project the content of files is

Debug.xcconfig:

#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Generated.xcconfig"

and

Release.xcconfig:

#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Generated.xcconfig"

these steps fixed my project i hope it will fix yours also

like image 22
Mohammed Adel Avatar answered Dec 07 '25 13:12

Mohammed Adel



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!