Files
yinmeng-ios/Podfile

91 lines
2.3 KiB
Plaintext
Raw Permalink Normal View History

2021-09-06 18:47:38 +08:00
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
2021-12-20 17:30:36 +08:00
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
2021-09-06 18:47:38 +08:00
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'
2021-09-23 18:10:20 +08:00
pod 'FFPopup'
2021-09-06 18:47:38 +08:00
#易盾 本机一键登录
2022-02-23 14:57:39 +08:00
pod 'NTESQuickPass'
#模型转化
pod 'MJExtension'
2021-09-17 11:10:17 +08:00
#图片加载
pod 'SDWebImage'
2023-08-18 10:44:53 +08:00
pod 'FLAnimatedImage'
pod 'SDWebImageFLPlugin' # 对FLAnimatedImage和SDWebImage的桥接
2021-09-17 19:41:09 +08:00
#输入
pod 'SZTextView'
2021-09-23 18:38:33 +08:00
#轮播图
pod 'SDCycleScrollView'
2024-03-26 16:46:59 +08:00
2021-09-26 20:42:33 +08:00
#内购
pod 'IAPHelper'
#持久化存储
pod 'SSKeychain'
pod 'Base64'
2021-10-14 21:10:04 +08:00
#文字自动滚动
pod 'MarqueeLabel-ObjC'
#声网
2023-09-20 14:01:55 +08:00
pod 'AgoraRtcEngine_iOS', '~> 4.2.2'
2021-12-06 20:43:58 +08:00
#TRTC
2023-11-03 14:16:55 +08:00
pod 'TXLiteAVSDK_TRTC', '~> 11.4.14530'
#pop动画
pod 'pop', '~> 1.0.12'
2021-10-21 12:01:21 +08:00
#云信
2023-03-09 19:46:22 +08:00
pod 'NIMSDK_LITE', '~> 8.9.0'
2021-11-29 21:40:11 +08:00
#下拉刷新控件
pod 'MJRefresh'
2021-09-13 18:56:16 +08:00
#登录的
pod 'mob_sharesdk'
pod 'mob_sharesdk/ShareSDKPlatforms/QQ'
2022-05-14 19:05:35 +08:00
pod 'mob_sharesdk/ShareSDKPlatforms/WeChat_Lite'
2021-09-13 18:56:16 +08:00
pod 'mob_sharesdk/ShareSDKPlatforms/Apple'
pod 'mob_sharesdk/ShareSDKExtension'
2023-11-23 10:54:46 +08:00
pod 'SVGAPlayer'
2021-12-02 14:00:05 +08:00
# 滑动标签栏
pod 'JXCategoryView'
2022-02-21 20:06:09 +08:00
pod 'JXPagingView/Pager'
2021-12-06 17:31:52 +08:00
#UM统计
pod 'UMCommon'
pod 'UMDevice'
2021-12-16 19:02:31 +08:00
#头饰显示
pod 'YYWebImage', '~> 1.0.5'
#vap礼物动画
pod 'QGVAPlayer'
2022-01-10 18:54:23 +08:00
pod 'IQKeyboardManager', '~> 6.5.5'
2022-04-21 17:11:05 +08:00
pod 'TZImagePickerController'
2022-10-17 17:54:04 +08:00
pod 'Bugly'
pod 'QY_NIM_iOS_SDK', '~> 6.6.1'
2023-03-17 16:35:25 +08:00
pod 'LinkedME_LinkPage'
#上传音乐
pod 'CocoaAsyncSocket',:modular_headers => true
2022-05-14 19:05:35 +08:00
#微信支付,支付宝支付
pod 'AlipaySDK-iOS'
pod 'WechatOpenSDK'
#调试
pod 'LookinServer', :configurations => ['Debug']
2024-03-26 16:46:59 +08:00
pod 'QCloudCOSXML'
2021-09-13 18:56:16 +08:00
2021-09-06 18:47:38 +08:00
end
2023-07-24 10:45:35 +08:00
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'
2023-10-28 19:59:30 +08:00
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 }
2023-07-24 10:45:35 +08:00
end
end
end
end
2023-07-24 10:18:11 +08:00