Podfile 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. source 'https://github.com/CocoaPods/Specs.git'
  2. platform :ios, '10.0'
  3. # swift42里面的库已经支持swift4.2了 其他暂时先用4.1版本
  4. swift42 = ['BSImagePicker','Charts','Eureka', 'GradientCircularProgress', 'HandyJSON', 'SwiftyTimer']
  5. post_install do |installer|
  6. installer.pods_project.targets.each do |target|
  7. swift_version = '4.1'
  8. if swift42.include?(target.name)
  9. print "set pod #{target.name} swift version to 4.2\n"
  10. swift_version = '4.2'
  11. end
  12. target.build_configurations.each do |config|
  13. config.build_settings['SWIFT_VERSION'] = swift_version
  14. end
  15. end
  16. end
  17. target 'O2Platform' do
  18. use_frameworks!
  19. pod 'Alamofire', '~> 4.7'
  20. pod 'AlamofireImage', '~> 3.3'
  21. pod 'AlamofireNetworkActivityIndicator', '~> 2.0'
  22. pod 'AlamofireObjectMapper', '~> 5.1'
  23. pod 'SwiftyUserDefaults', '~>3.0'
  24. pod 'SwiftyJSON', '~>3.1'
  25. pod 'SDWebImage', '~>4.0'
  26. #pod 'CVCalendar', '~> 1.6.1'
  27. #pod 'ReachabilitySwift', '~> 3'
  28. pod 'BWSwipeRevealCell', '~> 2.0'
  29. pod 'BSImagePicker'
  30. pod 'Eureka'
  31. pod 'SwiftyTimer'
  32. pod 'EZSwiftExtensions', :path => '/Users/fancy/ios/dependence/EZSwiftExtensions'
  33. #pod 'DZNEmptyDataSet'
  34. pod 'Charts'
  35. pod 'GradientCircularProgress', :git => 'https://github.com/keygx/GradientCircularProgress.git'
  36. pod 'ImageSlideshow', '~> 1.5'
  37. pod 'ImageSlideshow/Alamofire'
  38. pod 'swiftScan', '~> 1.1.2'
  39. # pod 'Segmentio', '~> 3.0'
  40. pod 'JGProgressHUD'
  41. #pod 'RAMAnimatedTabBarController', '~> 2.0.13'
  42. #pod 'YALField', :git => 'https://github.com/Yalantis/YALField.git'
  43. pod 'Whisper'
  44. ##2017.6月2号增加日志框架
  45. pod 'CocoaLumberjack/Swift'
  46. pod 'MBProgressHUD', '~> 1.0.0'
  47. pod 'SnapKit', '~> 4.0.0'
  48. pod 'PromisesSwift', '~> 1.0'
  49. ## 2.0 引入的第三方库 ##
  50. pod 'Moya', '~> 11.0.2'
  51. pod 'Moya/RxSwift', '~> 11.0.2'
  52. pod 'ProgressHUDSwift', '~> 0.2'
  53. pod 'SwiftValidator', :git => 'https://github.com/jpotts18/SwiftValidator.git', :branch => 'master'
  54. pod 'HandyJSON', '~> 4.2.0'
  55. pod 'ReactiveSwift', '~> 3.0'
  56. pod 'ReactiveCocoa', '~> 7.0'
  57. pod 'JHTAlertController', :path => '/Users/fancy/ios/dependence/JHTAlertController'
  58. pod 'CYLTabBarController', '~> 1.17.4'
  59. #pod 'BaiduMapKit'
  60. pod 'YHPopupView'
  61. pod 'YHPhotoKit'
  62. pod 'FMDB', '~> 2.6.2'
  63. # pod 'RxSwift', '~> 4.4.0'
  64. pod 'RxCocoa', '~> 4.0'
  65. pod 'PromiseKit', '~> 4.4'
  66. # 极光组件
  67. #pod 'JPush' 还是手动引入比较好
  68. #日历控件
  69. # 本地组件
  70. pod 'DatePickerDialogSwift', :path => '/Users/fancy/ios/dependence/DatePickerDialogSwift'
  71. #表格数据源为空时显示
  72. pod 'EmptyDataSet-Swift', '~> 4.0.2'
  73. #segmentedControl
  74. pod 'BetterSegmentedControl', '~> 0.9'
  75. pod 'FSCalendar'
  76. pod 'JZCalendarWeekView', '~> 0.4'
  77. # 高斯模糊UIViewController
  78. pod 'MIBlurPopup'
  79. # 日历控件
  80. pod 'JTCalendar', '~> 2.0'
  81. # Bugly 异常上报管理
  82. pod 'Bugly'
  83. end