39 lines
1001 B
Ruby
39 lines
1001 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
platform :ios, '13.0'
|
|
|
|
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 'ReaderHive' do
|
|
use_frameworks!
|
|
|
|
pod 'Moya'
|
|
pod 'SmartCodable', '5.0.15'
|
|
pod 'Kingfisher'
|
|
pod 'SnapKit'
|
|
pod 'YYCategories'
|
|
pod 'YYText'
|
|
pod 'JXSegmentedView'
|
|
pod 'JXPagingView/Paging'
|
|
pod 'FSPagerView'
|
|
pod 'collection-view-layouts/TagsLayout'
|
|
pod 'IQKeyboardManagerSwift'
|
|
pod 'LYEmptyView'
|
|
pod 'HWPanModal'
|
|
pod 'MJRefresh'
|
|
pod 'Cosmos' #星星评分
|
|
pod 'Toast'
|
|
pod 'SVProgressHUD'
|
|
pod 'FDFullscreenPopGesture'
|
|
pod 'ZLPhotoBrowser'
|
|
|
|
end
|