123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- #source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
- # Uncomment the next line to define a global platform for your project
- platform :ios, '10.0'
- target 'RainbowPlanet' do
- # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
- inhibit_all_warnings!
- use_frameworks!
- # 网络请求
- pod 'Alamofire'
- pod 'Moya/RxSwift'
- # Rx
- pod 'RxSwift'
- pod 'RxCocoa'
- # json解析
- pod 'SwiftyJSON'
- pod 'ObjectMapper'
- # 缓存
- pod 'Cache'
- pod 'FMDB'
- # 图片加载
- pod 'Kingfisher', '~> 5.7.1'
- # gif动画
- # pod 'Gifu'
- # josn动画
- pod 'lottie-ios'
- # 自动布局
- pod 'SnapKit'
- pod 'Masonry'
- # 键盘
- pod 'InputBarAccessoryView'
- pod 'IQKeyboardManagerSwift'
- # 弹框
- pod 'MBProgressHUD'
- # 下拉刷新
- pod 'MJRefresh'
- # 设备型号
- pod 'DeviceKit'
- # 占位图
- pod 'LYEmptyView'
- # 分段导航栏
- pod 'JXSegmentedView'
- pod 'JXPagingView/Paging'
- # 轮播
- pod 'FSPagerView'
- # 小红点
- pod 'PPBadgeViewSwift'
- # 动画效果
- # pod 'pop'
- # pop动画
- pod 'FWPopupView'
- # 存储数据Keychain
- pod 'KeychainAccess'
- # js交互
- pod 'WebViewJavascriptBridge'
- # 路由
- pod 'SwiftyMediator/Routable'
- # 上下滚动的Label
- pod 'DPScrollNumberLabel'
- # TabBarController
- pod 'ESTabBarController-swift'
- # 日期选择器
- pod 'PGDatePicker'
- # 生成二维码
- pod 'EFQRCode'
- # Label扩展
- pod 'YYText'
- pod 'AFNetworking', '~> 3.0'
- pod 'JSONModel','~> 1.7.0'
- pod 'ZipArchive','1.4.0'
- # 左右Label
- # pod 'FlickerNumber'
- # 内存泄露
- # pod 'MLeaksFinder'
- # pod 'FBMemoryProfiler'
- #======================第三方平台===========
- #======================友盟===========
- # UM基础库
- pod 'UMCCommon'
- pod 'UMCSecurityPlugins'
- # 日志库(调试)
- pod 'UMCCommonLog'
- # 统计 SDK
- pod 'UMCAnalytics'
- # Push SDK
- pod 'UMCPush'
- # U-Share SDK UI模块(分享面板,建议添加)
- pod 'UMCShare/UI'
- # 集成微信(精简版0.2M)
- pod 'UMCShare/Social/ReducedWeChat'
- # 集成QQ/QZone/TIM(精简版0.5M)
- pod 'UMCShare/Social/ReducedQQ'
- # 集成新浪微博(精简版1M)
- pod 'UMCShare/Social/ReducedSina'
- #=====================百度地图===========
- # 百度地图定位SDK
- pod 'BMKLocationKit', '1.5.0'
- # 百度地图SDK
- pod 'BaiduMapKit'
- #=====================AliyunVideoSDK===========
- #共同依赖的库
- pod 'QuCore-ThirdParty'
- pod 'AlivcConan'
- #短视频SDK
- pod 'AliyunVideoSDKPro'
- pod 'VODUpload' #短视频上传,不使用上传功能可以不依赖此库
- #播放器SDK
- pod 'AliPlayerPartSDK_iOS'
- # pod 'AliPlayerSDK_iOS' #单独集成播放器时使用这个
- #=====================融云IMSDK===========
- #融云 IM 通讯能力库
- pod 'RongCloudIM/IMLib'
- #融云 IM 界面组件
- pod 'RongCloudIM/IMKit'
-
- end
|