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

61 lines
1.5 KiB
Plaintext
Raw Normal View History

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
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'
#易盾 本机一键登录
2023-11-20 21:29:45 -08:00
pod 'NTESQuickPass'
#模型转化
pod 'MJExtension'
#图片加载
pod 'SDWebImage'
pod 'FLAnimatedImage'
pod 'SDWebImageFLPlugin' # 对FLAnimatedImage和SDWebImage的桥接
#上传图片
2023-11-20 21:29:45 -08:00
pod 'Qiniu'
#内购
pod 'IAPHelper'
#持久化存储
pod 'SSKeychain'
pod 'Base64'
#云信
pod 'NIMSDK_LITE', '~> 8.9.0'
2023-11-20 21:29:45 -08:00
#七鱼
pod 'QY_NIM_iOS_SDK', '~> 6.6.1'
#TRTC
pod 'TXLiteAVSDK_TRTC', '~> 10.3.12271'
#下拉刷新控件
pod 'MJRefresh'
#vap礼物动画
pod 'QGVAPlayer'
2023-11-20 21:29:45 -08:00
pod 'IQKeyboardManager', '~> 6.5.11'
#调试
pod 'LookinServer', :configurations => ['Debug']
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