Advertisement
Guest User

Podfile

a guest
Nov 4th, 2018
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. # Uncomment the next line to define a global platform for your project
  2. # platform :ios, '9.0'
  3.  
  4. target 'MyProject' do
  5. # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  6. use_frameworks!
  7.  
  8. # Pods for MyProject
  9.  
  10. pod 'Firebase/Core'
  11. pod 'Firebase/Storage'
  12. pod 'Firebase/Auth'
  13. pod 'Firebase/Database'
  14. pod 'JSQMessagesViewController'
  15. pod 'SwiftGifOrigin'
  16. pod 'FacebookCore'
  17. pod 'FacebookLogin'
  18. pod 'FacebookShare'
  19. pod 'Alamofire'
  20. pod 'AlamofireImage'
  21. pod 'ICSPullToRefresh', '~> 0.6'
  22. pod 'IQKeyboardManagerSwift', '4.0.8'
  23. pod 'Firebase/Messaging'
  24. pod 'Mapbox-iOS-SDK'
  25.  
  26.  
  27. target 'MyProject UITests' do
  28. inherit! :search_paths
  29. # Pods for testing
  30.  
  31. end
  32. end
  33.  
  34. post_install do |installer|
  35. installer.pods_project.targets.each do |target|
  36. if ['FacebookCore', 'FacebookLogin'].include? target.name
  37. target.build_configurations.each do |config|
  38. config.build_settings['SWIFT_VERSION'] = '3.2'
  39. end
  40. end
  41. end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement