-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpodfile
30 lines (27 loc) · 813 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
source 'https://cdn.cocoapods.org/'
platform :ios, "14.0"
use_modular_headers!
target "WeShare" do
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'] = '14.0'
end
end
end
end
pod 'SnapKit'
pod 'Then'
pod 'RxGesture', '~> 3.0'
pod 'RxSwift', '~> 5.0'
pod 'RxCocoa', '~> 5.0'
pod 'Alamofire', '5.6.2'
pod 'MMKV', '1.3.1'
pod 'PagingKit', '1.15.0'
pod 'R.swift'
pod 'SDWebImage', '~> 5.13'
pod 'YYText'
pod 'SGQRCode', '~> 4.1.0'
pod 'TZImagePickerController', :path => 'LocalDependent'
end