Skip to content

Instantly share code, notes, and snippets.

@mcmurrym
Created May 4, 2015 21:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcmurrym/4b8c81e9214d00a20727 to your computer and use it in GitHub Desktop.
Save mcmurrym/4b8c81e9214d00a20727 to your computer and use it in GitHub Desktop.
How to Check the "Allow app extension API only" of pod frameworks.
post_install do |installer|
installer.project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'YES'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment