Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. platform :ios, '8.0'
  2.  
  3. inhibit_all_warnings!
  4. use_frameworks!
  5.  
  6. target 'MY_TARGET_NAME_HERE' do
  7. pod 'MagicalRecord'
  8. pod 'AFNetworking', '~> 3.0'
  9. # pod 'MBProgressHUD'
  10. pod 'FBSDKCoreKit', '~> 4.9.1'
  11. pod 'FBSDKLoginKit', '~> 4.9.1'
  12. pod 'FBSDKShareKit', '~> 4.9.1'
  13. pod 'SAMKeychain'
  14. pod 'Crashlytics'
  15. pod 'GMImagePicker'
  16. pod 'FSCalendar'
  17. pod 'UIAlertController+Blocks'
  18. pod 'Charts'
  19. pod 'CircleProgressView'
  20. pod 'MTBBarcodeScanner'
  21. pod 'Masonry'
  22. pod 'DZNEmptyDataSet'
  23. pod 'libextobjc'
  24. pod 'JTTableViewController'
  25. pod 'SVPullToRefresh'
  26. pod 'APAddressBook'
  27. pod 'OAStackView'
  28. pod 'NYTPhotoViewer', '~> 1.1.0'
  29. pod 'TOCropViewController'
  30. pod 'RBStoryboardLink'
  31. pod 'THLabel', '~> 1.4'
  32. # pod 'Typhoon'
  33. pod 'NWPusher'
  34. end
  35.  
  36. post_install do |installer|
  37. installer.pods_project.targets.each do |target|
  38. target.build_configurations.each do |config|
  39. config.build_settings['SWIFT_VERSION'] = '2.3'
  40. end
  41. end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement