Podfile 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. source 'https://github.com/CocoaPods/Specs.git'
  2. # source 'https://git.coding.net/hging/Specs.git'
  3. platform :ios, '10.0'
  4. # swift50里面的库已经支持swift5了 其他暂时先用4.1版本
  5. #swift50 = ['BSImagePicker','Charts','Eureka', 'GradientCircularProgress', 'HandyJSON', 'SwiftyTimer', 'ReactiveSwift', 'ReactiveCocoa']
  6. #
  7. #post_install do |installer|
  8. # installer.pods_project.targets.each do |target|
  9. # swift_version = '4.1'
  10. # if swift50.include?(target.name)
  11. # print "set pod #{target.name} swift version to 5.0\n"
  12. # swift_version = '5.0'
  13. # end
  14. # target.build_configurations.each do |config|
  15. # config.build_settings['SWIFT_VERSION'] = swift_version
  16. # config.build_settings['ENABLE_BITCODE'] = 'NO'
  17. # end
  18. # end
  19. #end
  20. target 'O2Platform' do
  21. use_frameworks!
  22. # Pods for O2OA
  23. pod 'FMDB', '~> 2.6.2'
  24. # 日志框架
  25. pod 'CocoaLumberjack/Swift', '~> 3.5'
  26. # 国人写的 HUD https://github.com/Harley-xk/Chrysan
  27. pod 'Chrysan'
  28. # Promise
  29. pod 'PromisesSwift', '~> 1.2'
  30. # 下拉刷新
  31. pod 'MJRefresh'
  32. # 键盘管理
  33. pod 'IQKeyboardManagerSwift', '~> 6.5.0'
  34. #网络请求
  35. pod 'Alamofire', '~> 5.0'
  36. # pod 'AlamofireImage', '~> 3.3'
  37. pod 'AlamofireNetworkActivityIndicator', '~> 3.0'
  38. # pod 'AlamofireObjectMapper', '~> 6.2.0'
  39. pod 'AlamofireObjectMapper', :path => '/Users/fancy/github/AlamofireObjectMapper'
  40. pod 'Moya', '~> 14.0'
  41. pod 'Moya/RxSwift', '~> 14.0'
  42. # UserDefaults加强
  43. pod 'SwiftyUserDefaults', '~>3.0'
  44. # json
  45. pod 'HandyJSON', '~> 5.0.2-beta'
  46. pod 'SwiftyJSON', '~>3.1'
  47. # reactive
  48. pod 'ReactiveSwift', '~> 6.1'
  49. pod 'ReactiveCocoa', '~> 10.1'
  50. # Bugly 异常上报管理
  51. pod 'Bugly'
  52. pod 'SDWebImage', '~>4.0'
  53. pod 'BSImagePicker', '~> 3.1.0'
  54. pod 'Eureka', '~> 5.3.0'
  55. pod 'SwiftyTimer'
  56. pod 'Charts'
  57. pod 'ImageSlideshow', '~> 1.9'
  58. pod 'ImageSlideshow/Alamofire'
  59. pod 'MBProgressHUD', '~> 1.0.0'
  60. pod 'SnapKit', '~> 4.0'
  61. pod 'SwiftValidator', :git => 'https://github.com/jpotts18/SwiftValidator.git', :branch => 'master'
  62. pod 'YHPopupView'
  63. pod 'YHPhotoKit'
  64. pod 'RxCocoa', '~> 5.1.1'
  65. #表格数据源为空时显示
  66. pod 'EmptyDataSet-Swift', '~> 5.0.0'
  67. #segmentedControl
  68. pod 'BetterSegmentedControl', '~> 1.2'
  69. pod 'FSCalendar'
  70. # pod 'JZCalendarWeekView', '~> 0.4'
  71. # 日历控件
  72. pod 'JTCalendar', '~> 2.0'
  73. #百度地图SDK
  74. pod 'BaiduMapKit'
  75. #百度定位
  76. pod 'BMKLocationKit'
  77. # 极光
  78. pod 'JCore', '2.1.2'
  79. pod 'JPush', '3.2.4'
  80. pod 'JMessage'
  81. # websocket
  82. pod 'Starscream', '~> 4.0.0'
  83. end