Podfile 2.3 KB

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