123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # Uncomment the next line to define a global platform for your project
- platform :ios, '8.0'
- post_install do |installer|
- installer.pods_project.targets.each do |target|
- target.build_configurations.each do |configuration|
- configuration.build_settings['SWIFT_VERSION'] = "2.3"
- end
- end
- end
- target 'WSCloudStorage' do
- # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
- # use_frameworks!
- pod 'SDWebImage', '~> 3.7.1'
- pod 'AFNetworking'
- pod 'MagicalRecord'
- pod 'FMDB'
- pod 'MJExtension'
- pod 'Bugly'
- pod 'MBProgressHUD'
- pod 'DACircularProgress'
- pod 'SWTableViewCell', '~> 0.3.7'
- #pod 'StitchingImage', :git => 'https://github.com/zhengjinghua/StitchingImage.git' 手动导入微信群头像组合
- #pod 'MWPhotoBrowser'
- pod 'Masonry'
- pod 'FTPopOverMenu'
- pod 'JDStatusBarNotification', '~> 1.5.1'
- #pod 'SwiftMonkeyPaws', :git => 'https://github.com/zalando/SwiftMonkey.git' #测试专用上架记得移除
-
- #use_frameworks!
- # pod 'RxSwift', '~> 2.0'
- # pod 'RxCocoa', '~> 2.0'
- #Pods for WSCloudStorage
- target 'WSCloudStorageTests' do
- inherit! :search_paths
- # Pods for testing
- # pod 'SwiftMonkey' #测试专用上架记得移除
- end
- #target 'WSCloudStorageUITests' do
- # inherit! :search_paths
- # # Pods for testing
- # end
- end
|