Files
peko-ios/Podfile

89 lines
2.1 KiB
Plaintext
Raw Normal View History

2023-07-06 16:54:13 +08:00
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
target 'YuMi' do
use_frameworks!
2023-09-15 16:08:43 +08:00
#pag动画
2024-04-24 20:08:24 +08:00
pod 'libpag'
2023-08-14 14:45:44 +08:00
pod 'Bugly'
2024-04-24 20:08:24 +08:00
pod 'Adjust'
2023-08-08 16:37:36 +08:00
pod 'Firebase/Analytics'
2023-08-11 14:46:56 +08:00
pod 'FBSDKLoginKit'
2023-09-22 17:43:21 +08:00
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
2023-12-29 16:43:37 +08:00
pod 'LineSDKSwift'
2023-07-06 16:54:13 +08:00
# 滑动标签栏
pod 'JXCategoryView'
pod 'JXPagingView/Pager'
2023-09-05 11:45:21 +08:00
#模型转化
pod 'MJExtension'
#图片加载
pod 'SDWebImage'
pod 'FLAnimatedImage'
pod 'SDWebImageFLPlugin' # 对FLAnimatedImage和SDWebImage的桥接
2023-07-06 16:54:13 +08:00
pod 'AFNetworking'
#文字自动滚动
2023-09-20 18:38:51 +08:00
pod 'MarqueeLabel'
2023-07-06 16:54:13 +08:00
pod 'YYText'
pod 'Masonry'
2023-09-05 11:45:21 +08:00
#输入
pod 'SZTextView'
2023-07-06 16:54:13 +08:00
#头饰显示
pod 'YYWebImage'
#轮播图
pod 'SDCycleScrollView'
pod 'ReactiveObjC'
pod 'MBProgressHUD'
pod 'FFPopup'
#下拉刷新控件
pod 'MJRefresh'
pod 'IQKeyboardManager'
pod 'TZImagePickerController'
#TRTC
2024-04-24 20:08:24 +08:00
pod 'TXLiteAVSDK_TRTC'
2023-07-06 16:54:13 +08:00
#vap礼物动画
pod 'QGVAPlayer'
#上传音乐
pod 'CocoaAsyncSocket',:modular_headers => true
#声网
2024-04-24 20:08:24 +08:00
pod 'AgoraRtcEngine_iOS'
2024-03-26 14:56:55 +08:00
pod 'SSKeychain'
pod 'Base64'
2023-07-06 16:54:13 +08:00
#pop动画
2024-04-24 20:08:24 +08:00
pod 'pop'
2023-07-06 16:54:13 +08:00
#云信
2024-04-24 20:08:24 +08:00
pod 'NIMSDK_LITE'
pod 'GKCycleScrollView'
2024-04-03 17:18:44 +08:00
pod 'SVGAPlayer'
pod 'GoogleSignIn'
pod 'mob_linksdk_pro'
pod 'mob_sharesdk'
pod 'mob_sharesdk/ShareSDKPlatforms/Apple'
#pod 'mob_sharesdk/ShareSDKPlatforms/Line'
pod 'mob_sharesdk/ShareSDKExtension'
2023-07-06 16:54:13 +08:00
pod 'UMCommon'
2024-04-03 17:18:44 +08:00
pod 'UMDevice'
2023-08-31 14:14:06 +08:00
pod 'lottie-ios'
2023-07-06 16:54:13 +08:00
pod 'WeexSDK'
pod 'ZLCollectionViewFlowLayout'
pod 'WMZDropDownMenu'
pod 'TABAnimated'
2024-03-25 15:28:15 +08:00
pod 'YuMi',:path=>'yum'
pod 'QCloudCOSXML'
2023-07-06 16:54:13 +08:00
end
2023-07-14 18:50:55 +08:00
2023-07-06 16:54:13 +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 04:46:10 +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-06 16:54:13 +08:00
end
end
end
end