GradientCircularProgress
GradientCircularProgress copied to clipboard
I have info.plist outside support Files
I have a Multiple commands produce error while install over pods in the folder there r the info.plist in source and support files. With Xcode 10
Good point @flashapplications, here I've the same issue. Until this is fixed for now I'm doing in my Podfile:
post_install do |installer|
installer.pods_project.targets.each do |target|
source_files = target.source_build_phase.files
source_files.find do |file|
if file.file_ref.name == 'Info.plist'
source_files.delete file
puts "Deleting source file #{file.file_ref.name} from target #{target.inspect}."
end
end
end
end
Thank you.