Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I have info.plist outside support Files #39

Open
flashapplications opened this issue Sep 25, 2018 · 3 comments
Open

I have info.plist outside support Files #39

flashapplications opened this issue Sep 25, 2018 · 3 comments

Comments

@flashapplications
Copy link

flashapplications commented Sep 25, 2018

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

@southfox
Copy link

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

@flashapplications
Copy link
Author

Thank you.

@southfox
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants