Files
yingmeng-ios-switf/Podfile

47 lines
1.1 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-02-21 21:30:13 +08:00
#加载图片
pod 'Kingfisher'
#cell
pod 'Reusable'
#约束
pod 'SnapKit', '~> 5.6.0'
2024-02-24 13:49:51 +08:00
#获取设备信息
pod 'DeviceKit', '~> 4.0'
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'
2024-02-27 23:34:55 +08:00
pod 'NIMSDK_LITE', '9.6.1'
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', '~> 1.0.12'
pod 'FFPopup'
2024-03-13 18:44:52 +08:00
pod 'TXLiteAVSDK_TRTC', '~> 11.4.14530'
pod 'MJExtension'
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