You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
598 B

target 'iosApp' do
use_frameworks!
platform :ios, '16.0'
pod 'shared', :path => '../shared'
pod 'Masonry', '~> 1.1.0'
pod 'JTCalendar', '~> 2.2.6'
pod 'YYKit', '~> 1.0.9'
pod 'MBProgressHUD', '~> 1.2.0'
pod 'Toast'
pod 'QMUIKit'
pod 'MJRefresh'
# for sdk
pod 'DateTools'
pod 'MJExtension', '~> 3.4.1'
pod 'FMDB'
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
end
end
end
end