GradientCircularProgress icon indicating copy to clipboard operation
GradientCircularProgress copied to clipboard

I have info.plist outside support Files

Open flashapplications opened this issue 7 years ago • 3 comments

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

flashapplications avatar Sep 25 '18 08:09 flashapplications

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

southfox avatar Sep 26 '18 12:09 southfox

Thank you.

flashapplications avatar Sep 26 '18 14:09 flashapplications

Hi, I've just publish a PR here to fix issue #39 and issue #41, could you review? Thanks.

southfox avatar Sep 26 '18 15:09 southfox