Reputation: 21
I am having trouble while building iOS App in Azure DevOps. I am getting below error while running xcode build task
❌ error: Unable to load contents of file list: '/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-input-files.xcfilelist' (in target 'FirebaseAnalytics' from project 'Pods')
❌ error: Unable to load contents of file list: '/Target Support Files/FirebaseAnalytics/FirebaseAnalytics-xcframeworks-output-files.xcfilelist' (in target 'FirebaseAnalytics' from project 'Pods')
** BUILD FAILED **
##[error]Error: /usr/bin/xcodebuild failed with return code: 65
I am using xcode version 13, MacOs latest agent in Azure DevOps.
I am following below steps
pod install, xcode build
Can anyone please tell me how to resolve above error?
Upvotes: 2
Views: 1936
Reputation: 637
Add the lines below to your Podfile to specify that you do not need to sign the Pods;
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
Upvotes: 0