Skip to content

Instantly share code, notes, and snippets.

@cspickert
Created January 15, 2014 21:27

Revisions

  1. cspickert created this gist Jan 15, 2014.
    8 changes: 8 additions & 0 deletions podfile_snippet.rb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    # Remove 64-bit build architecture from Pods targets
    post_install do |installer|
    installer.project.targets.each do |target|
    target.build_configurations.each do |configuration|
    target.build_settings(configuration.name).delete 'ARCHS'
    end
    end
    end