Files
yingmeng-ios-switf/Podfile

58 lines
1.3 KiB
Plaintext
Raw Normal View History

2024-02-21 21:30:13 +08:00
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
target 'yinmeng-ios' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
2024-03-07 16:56:48 +08:00
pod 'RxCocoa'
pod 'RxSwift'
pod 'HandyJSON'
pod 'Moya'
2024-02-21 21:30:13 +08:00
pod 'MBProgressHUD'
2024-03-07 16:56:48 +08:00
pod 'SVGAPlayer'
2024-03-23 16:28:10 +08:00
pod 'YYText'
pod 'YYWebImage'
2024-04-03 20:06:02 +08:00
#下拉刷新控件
pod 'MJRefresh'
2024-03-22 11:54:23 +08:00
# 滑动标签栏
pod 'JXCategoryView'
pod 'JXPagingView/Pager'
2024-02-21 21:30:13 +08:00
#加载图片
pod 'Kingfisher'
#cell
pod 'Reusable'
#约束
pod 'SnapKit'
2024-02-24 13:49:51 +08:00
#获取设备信息
pod 'DeviceKit'
2024-02-28 19:01:10 +08:00
pod 'Nuke'
2024-02-24 13:49:51 +08:00
pod "NSObject+Rx"
2024-03-07 16:56:48 +08:00
pod 'Qiniu'
#文字自动滚动
pod 'MarqueeLabel'
pod 'NIMSDK_LITE'
2024-02-27 23:34:55 +08:00
2024-03-01 15:39:53 +08:00
pod 'TZImagePickerController'
2024-03-01 01:27:25 +08:00
pod 'LookinServer', :configurations => ['Debug']
2024-03-08 10:05:28 +08:00
#pop动画
pod 'pop'
2024-03-08 10:05:28 +08:00
pod 'FFPopup'
pod 'TXLiteAVSDK_TRTC'
2024-03-13 18:44:52 +08:00
pod 'MJExtension'
2024-03-23 16:28:10 +08:00
pod 'QGVAPlayer'
2024-03-22 15:46:25 +08:00
#声网
pod 'AgoraRtcEngine_iOS'
2024-02-21 21:30:13 +08:00
# Pods for yinmeng-ios
end
2024-03-01 15:39:53 +08:00
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end