Podfile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '7.0'
  3. post_install do |installer|
  4. installer.pods_project.targets.each do |target|
  5. target.build_configurations.each do |configuration|
  6. configuration.build_settings['SWIFT_VERSION'] = "2.3"
  7. end
  8. end
  9. end
  10. target 'WSCloudStorage' do
  11. # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  12. # use_frameworks!
  13. pod 'SDWebImage', '~> 3.7.1'
  14. pod 'AFNetworking'
  15. pod 'MagicalRecord'
  16. pod 'FMDB'
  17. pod 'MJExtension'
  18. pod 'Bugly'
  19. pod 'MBProgressHUD'
  20. pod 'DACircularProgress'
  21. pod 'SWTableViewCell', '~> 0.3.7'
  22. #pod 'StitchingImage', :git => 'https://github.com/zhengjinghua/StitchingImage.git' 手动导入微信群头像组合
  23. #pod 'MWPhotoBrowser'
  24. pod 'Masonry'
  25. pod 'FTPopOverMenu'
  26. pod 'JDStatusBarNotification', '~> 1.5.1'
  27. #use_frameworks!
  28. # pod 'RxSwift', '~> 2.0'
  29. # pod 'RxCocoa', '~> 2.0'
  30. #Pods for WSCloudStorage
  31. target 'WSCloudStorageTests' do
  32. inherit! :search_paths
  33. # Pods for testing
  34. end
  35. target 'WSCloudStorageUITests' do
  36. inherit! :search_paths
  37. # Pods for testing
  38. end
  39. end