Files
yingmeng-ios-switf/Podfile
2024-03-01 15:39:53 +08:00

41 lines
912 B
Ruby

# 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!
pod 'RxCocoa'
pod 'RxSwift'
pod 'HandyJSON'
pod 'Moya'
pod 'MBProgressHUD'
pod 'SVGAPlayer'
#加载图片
pod 'Kingfisher'
#cell
pod 'Reusable'
#约束
pod 'SnapKit', '~> 5.6.0'
#获取设备信息
pod 'DeviceKit', '~> 4.0'
pod 'Nuke'
pod "NSObject+Rx"
pod 'NIMSDK_LITE', '9.6.1'
pod 'TZImagePickerController'
pod 'LookinServer', :configurations => ['Debug']
# Pods for yinmeng-ios
end
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