40 lines
949 B
Ruby
40 lines
949 B
Ruby
platform :ios, '13.0'
|
|
|
|
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['ENABLE_BITCODE'] = 'NO'
|
|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
|
|
config.build_settings['EXCLUDED_ARCHITECTURES'] = 'i386'
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
|
|
end
|
|
end
|
|
end
|
|
|
|
target 'Fableon' do
|
|
use_frameworks!
|
|
|
|
pod 'YYCategories'
|
|
pod 'YYText'
|
|
pod 'Alamofire'
|
|
pod 'SmartCodable'
|
|
pod 'JXPlayer', '~> 0.1.5'
|
|
pod 'Kingfisher'
|
|
pod 'SnapKit'
|
|
pod 'FSPagerView'
|
|
pod 'HWPanModal'
|
|
pod 'SVProgressHUD'
|
|
pod 'Toast'
|
|
pod 'MJRefresh'
|
|
pod 'IQKeyboardManagerSwift'
|
|
pod 'LYEmptyView'
|
|
pod 'collection-view-layouts/TagsLayout'
|
|
pod 'FDFullscreenPopGesture'
|
|
|
|
# swiftUI
|
|
# pod 'SwiftUIPager'
|
|
|
|
end
|