-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
39 lines (34 loc) · 1006 Bytes
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#source 'https://github.com/CocoaPods/Specs.git'
#source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
platform :ios, '13.0'
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["DEVELOPMENT_TEAM"] = "CZ483CQ6S3"
config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf'
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 13.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end
target 'SLIKit' do
use_frameworks!
pod 'RxSwift'
pod 'RxCocoa'
pod 'Then'
pod 'SnapKit'
pod 'MJRefresh'
pod 'SwiftDate'
pod 'JXPhotoBrowser'
pod 'Kingfisher'
pod 'FSTextView'
pod 'Haptica'
pod 'TagListView'
pod 'HXPhotoPicker'
pod 'swiftScan'
pod 'SwiftMessages'
pod 'ProgressHUD'
pod 'Toaster'
end