Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. post_install do |installer|
  2. installer.pods_project.targets.each do |target|
  3. target.build_configurations.each do |config|
  4. config.build_settings['SWIFT_VERSION'] = '3.0'
  5. end
  6. end
  7. end
  8.  
  9. platform :ios, '8.0'
  10. use_frameworks!
  11.  
  12. target 'Project 1'
  13.  
  14. pod 'FacebookCore'
  15. pod 'FacebookLogin'
  16. pod 'FacebookShare'
  17.  
  18. post_install do |installer|
  19. installer.pods_project.targets.each do |target|
  20. target.build_configurations.each do |config|
  21. config.build_settings['SWIFT_VERSION'] = '3.0'
  22. end
  23. end
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement