Files
yinmeng-ios/Podfile
2024-03-26 16:46:59 +08:00

91 lines
2.3 KiB
Ruby

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
target 'xplan-ios' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for xplan-ios
pod 'AFNetworking'
pod 'YYText'
pod 'Masonry'
pod 'ReactiveObjC'
pod 'MBProgressHUD'
pod 'FFPopup'
#易盾 本机一键登录
pod 'NTESQuickPass'
#模型转化
pod 'MJExtension'
#图片加载
pod 'SDWebImage'
pod 'FLAnimatedImage'
pod 'SDWebImageFLPlugin' # 对FLAnimatedImage和SDWebImage的桥接
#输入
pod 'SZTextView'
#轮播图
pod 'SDCycleScrollView'
#内购
pod 'IAPHelper'
#持久化存储
pod 'SSKeychain'
pod 'Base64'
#文字自动滚动
pod 'MarqueeLabel-ObjC'
#声网
pod 'AgoraRtcEngine_iOS', '~> 4.2.2'
#TRTC
pod 'TXLiteAVSDK_TRTC', '~> 11.4.14530'
#pop动画
pod 'pop', '~> 1.0.12'
#云信
pod 'NIMSDK_LITE', '~> 8.9.0'
#下拉刷新控件
pod 'MJRefresh'
#登录的
pod 'mob_sharesdk'
pod 'mob_sharesdk/ShareSDKPlatforms/QQ'
pod 'mob_sharesdk/ShareSDKPlatforms/WeChat_Lite'
pod 'mob_sharesdk/ShareSDKPlatforms/Apple'
pod 'mob_sharesdk/ShareSDKExtension'
pod 'SVGAPlayer'
# 滑动标签栏
pod 'JXCategoryView'
pod 'JXPagingView/Pager'
#UM统计
pod 'UMCommon'
pod 'UMDevice'
#头饰显示
pod 'YYWebImage', '~> 1.0.5'
#vap礼物动画
pod 'QGVAPlayer'
pod 'IQKeyboardManager', '~> 6.5.5'
pod 'TZImagePickerController'
pod 'Bugly'
pod 'QY_NIM_iOS_SDK', '~> 6.6.1'
pod 'LinkedME_LinkPage'
#上传音乐
pod 'CocoaAsyncSocket',:modular_headers => true
#微信支付,支付宝支付
pod 'AlipaySDK-iOS'
pod 'WechatOpenSDK'
#调试
pod 'LookinServer', :configurations => ['Debug']
pod 'QCloudCOSXML'
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