jiGuangXieZuo/ProductApp/Podfile

46 lines
858 B
Plaintext
Raw Normal View History

2024-09-20 18:32:04 +08:00
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
platform :ios, '10.0'
target 'ProductApp' do
use_frameworks!
pod 'AFNetworking'
pod 'MJRefresh'
pod 'IQKeyboardManager'
pod 'Masonry'
pod 'Reachability'
pod 'MBProgressHUD'
pod 'DZNEmptyDataSet'
pod 'PopupKit'
pod 'SDCycleScrollView'
pod 'SDWebImage'
pod 'SDAutoLayout'
pod 'MOFSPickerManager'
pod 'UITableView+FDTemplateLayoutCell'
pod 'YYModel'
pod 'LSTTimer'
pod 'SSZipArchive'
#pod 'AMapNavi'
#pod 'AMapLocation'
#pod 'AMapSearch'
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'
end
end
end
end
end