Files
yinmeng-ios-store/yinmeng-ios/Podfile

71 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
2023-11-21 17:44:17 +08:00
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!
# Pods for yinmeng-ios
pod 'AFNetworking'
pod 'YYText'
pod 'Masonry'
pod 'MBProgressHUD'
pod 'ReactiveObjC'
2023-11-20 21:29:45 -08:00
pod 'FFPopup'
pod 'TZImagePickerController'
2024-01-22 10:03:33 +08:00
#模型转化
pod 'MJExtension'
#图片加载
pod 'SDWebImage'
pod 'FLAnimatedImage'
pod 'SDWebImageFLPlugin' # 对FLAnimatedImage和SDWebImage的桥接
#上传图片
2023-11-20 21:29:45 -08:00
pod 'Qiniu'
2024-01-22 10:03:33 +08:00
#持久化存储
pod 'SSKeychain'
pod 'Base64'
#云信
pod 'NIMSDK_LITE', '~> 8.9.0'
2024-01-22 10:03:33 +08:00
#TRTC
pod 'TXLiteAVSDK_TRTC', '~> 10.3.12271'
#下拉刷新控件
pod 'MJRefresh'
2023-11-21 19:04:48 -08:00
#pop动画
pod 'pop'
2024-01-22 10:03:33 +08:00
#vap礼物动画
2024-01-22 10:03:33 +08:00
2023-11-20 21:29:45 -08:00
pod 'IQKeyboardManager', '~> 6.5.11'
#调试
2024-01-18 14:07:52 +08:00
pod 'SnapKit'
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'Moya/RxSwift'
pod 'Moya-ObjectMapper/RxSwift'
pod 'CryptoSwift'
pod 'R.swift'
pod 'SwiftyJSON'
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
xcconfig_path = config.base_configuration_reference.real_path
xcconfig = File.read(xcconfig_path)
xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
end
end
end
end