Guest User

Untitled

a guest
Jun 21st, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 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'] = '4.1'
  5. end
  6. end
  7.  
  8. swift33Targets = ['', '']
  9. installer.pods_project.targets.each do |target|
  10. if oldSwiftTargets.include? target.name
  11. target.build_configurations.each do |config|
  12. config.build_settings['SWIFT_VERSION'] = '3.3'
  13. end
  14. end
  15. end
  16.  
  17. end
Add Comment
Please, Sign In to add comment