-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
44 lines (36 loc) · 925 Bytes
/
Copy pathPodfile
File metadata and controls
44 lines (36 loc) · 925 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
42
43
44
install! 'cocoapods', :deterministic_uuids => false
source 'https://github.com/CocoaPods/Specs.git'
# Uncomment this line to define a global platform for your project
platform :ios, '13.0'
# ignore all warnings from all pods
inhibit_all_warnings!
def rx_pods
# RX
# pod 'RxSwift', '~> 5.1.1'
# pod 'RxCocoa', '~> 5.1.1'
# pod 'RxSwiftExt', '~> 5.1.1'
#pod 'RxGesture', '~> 3.0.2'
end
def debug_pods
# debug
pod 'FLEX', :configurations => ['Debug']
end
def shared_pods
use_frameworks!
rx_pods
debug_pods
end
target 'github-clean-mvvm' do
shared_pods
target 'github-clean-mvvmTests' do
inherit! :search_paths
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
swift_version = '5.2'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = swift_version
end
end
end