-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathPodfile
More file actions
41 lines (36 loc) · 859 Bytes
/
Podfile
File metadata and controls
41 lines (36 loc) · 859 Bytes
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
40
41
platform :ios, '13.0'
target 'SUPLA' do
use_frameworks!
# Pods for SUPLA
pod 'DGCharts', '5.1.0'
pod 'RxSwift'
pod 'RxSwiftExt'
pod 'RxDataSources'
pod 'RxCocoa'
pod 'RxBlocking'
pod 'QueryKit'
pod 'PaddingLabel', '1.2'
pod 'FMMoveTableView', '~> 1.1'
pod 'SwiftyBeaver'
pod 'SwiftSoup'
pod 'Alamofire'
target 'SUPLATests' do
inherit! :search_paths
# Pods for testing
pod 'RxTest'
end
target 'SUPLAWidgetsExtension' do
inherit! :search_paths
# Pods for widgets
pod 'SwiftyBeaver'
end
end
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'] = '13.0'
end
end
end
end