73 lines
1.8 KiB
Ruby
73 lines
1.8 KiB
Ruby
# Uncomment the next line to define a global platform for your project
|
|
platform :ios, '13.0'
|
|
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
|
|
|
|
project 'YuMi.xcodeproj'
|
|
|
|
target 'YuMi' do
|
|
use_frameworks!
|
|
|
|
# 滑动标签栏
|
|
pod 'JXCategoryView'
|
|
pod 'JXPagingView/Pager'
|
|
#模型转化
|
|
pod 'MJExtension', '3.4.2'
|
|
#图片加载
|
|
pod 'SDWebImage', '5.21.3'
|
|
# pod 'SDWebImageWebPCoder' 用于加载 webP
|
|
pod 'FLAnimatedImage'
|
|
pod 'SDWebImageFLPlugin' # 对FLAnimatedImage和SDWebImage的桥接
|
|
pod 'AFNetworking'
|
|
#文字自动滚动
|
|
pod 'MarqueeLabel'
|
|
pod 'YYText'
|
|
pod 'Masonry'
|
|
#输入
|
|
pod 'SZTextView'
|
|
#头饰显示
|
|
pod 'YYWebImage'
|
|
#轮播图
|
|
pod 'SDCycleScrollView'
|
|
pod 'ReactiveObjC'
|
|
pod 'MBProgressHUD'
|
|
pod 'FFPopup'
|
|
#下拉刷新控件
|
|
pod 'MJRefresh', '3.7.9'
|
|
pod 'IQKeyboardManager'
|
|
pod 'TZImagePickerController'
|
|
|
|
#声网
|
|
|
|
pod 'SSKeychain'
|
|
pod 'Base64'
|
|
|
|
pod 'pop'
|
|
|
|
pod 'GKCycleScrollView'
|
|
|
|
pod 'ZLCollectionViewFlowLayout'
|
|
pod 'TABAnimated'
|
|
pod 'YuMi',:path=>'yum'
|
|
pod 'QCloudCOSXML'
|
|
pod 'TYCyclePagerView'
|
|
|
|
pod 'SnapKit', '~> 5.0'
|
|
|
|
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'] = '13.0'
|
|
config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf-with-dsym'
|
|
config.build_settings['ENABLE_BITCODE'] = 'NO'
|
|
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
|