cdts/xdts-ios 3/Podfile

115 lines
2.7 KiB
Plaintext
Raw Normal View History

2023-07-27 09:20:00 +08:00
# 设置使用参考https://mirrors.tuna.tsinghua.edu.cn/help/CocoaPods/
#source 'https://github.com/CocoaPods/Specs.git'
# source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
# 防止 TUI 组件里的 *.xcassets 与您项目里面冲突。
install! 'cocoapods', :disable_input_output_paths => true
target 'TreeHole' do
platform :ios, "11.0"
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks! :linkage => :static
# Pods for MagicTool
# 网络处理
pod 'AFNetworking', '4.0.1'
# 图片缓存处理
pod 'SDWebImage', '5.8.3'
# 键盘自动处理
pod 'IQKeyboardManager', '6.5.10'
# hud提示框
pod 'SVProgressHUD', '2.2.5'
# 布局
pod 'Masonry'
pod 'SDAutoLayout'
# 下拉刷新
pod 'MJRefresh', '3.3.1'
# JSON解析
pod 'MJExtension', '3.2.1'
# 富文本
pod 'YYText', '1.0.7'
# cell自动计算高度
pod 'UITableView+FDTemplateLayoutCell', '1.6'
# tabbarviewcontroller
pod 'CYLTabBarController', '1.29.2'
# 数据存储
pod 'MMKV', '1.2.13'
# 手机一键登录
# pod 'CL_ShanYanSDK', '= 2.3.4.8'
# 微信sdk
2023-07-27 09:20:00 +08:00
# Toast
pod 'Toast', '4.0.0'
# 腾讯IMSDK
# 集成聊天功能
pod 'TUIChat', '6.3.2609'
# 集成会话功能
pod 'TUIConversation', '6.3.2609'
# 集成关系链功能
pod 'TUIContact', '6.3.2609'
# 集成群组功能
pod 'TUIGroup', '6.3.2609'
# # 动图
pod 'FLAnimatedImage', '1.0.12'
# hook
pod 'JRSwizzle', '1.0'
# 个推一键登录
pod 'GYSDK', '2.2.0.0'
pod 'GTSDK', '2.6.7.0'
pod 'TZImagePickerController', '3.8.1'
# 友盟分享
pod 'UMCommon', '7.3.6'
pod 'UMDevice', '2.2.0'
# pod 'UMShare/Social/WeChat', '6.10.4'
# pod 'UMShare/Social/QQ', '6.10.4'
#轮播图
pod 'SDCycleScrollView'
#纯文字 走马灯.
pod 'JhtMarquee'
# 阿里云图片上传库
pod 'AliyunOSSiOS', '2.10.12'
# 微信sdk
pod 'WechatOpenSDK', '= 1.8.7.1'
# Buggly
pod 'Bugly', '2.5.91'
# 腾讯云实时音视频
pod 'TUICalling', :path => "TUICalling/TUICalling.podspec", :subspecs => ["TRTC"]
# 音频播放和管理
pod 'YYCache', '1.0.4'
pod 'FMDB', '2.7.5'
pod 'DDSqliteManager', '1.5.0'
pod 'DDWriteFileManager', '1.3.4'
#标签栏
pod 'YNPageViewController', '0.2.6'
pod 'TXLiteAVSDK_Professional'
# pod 'WechatOpenSDK', '1.8.7.1'
2023-07-27 09:20:00 +08:00
end
target 'HoleNotification' do
platform :ios, "11.0"
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks! :linkage => :static
pod 'GTExtensionSDK', '2.5.7'
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end