-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
33 lines (27 loc) · 753 Bytes
/
Copy pathPodfile
File metadata and controls
33 lines (27 loc) · 753 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
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
def install_dependencies
pod 'Kingfisher', '5.3.0'
pod 'RxSwift', '5.0.1'
pod 'RxCocoa', '5.0.1'
pod "RxGesture", '3.0.1'
pod 'RealmSwift', '3.20.0'
pod 'RxRealm', '1.0.0'
pod 'R.swift', '5.0.2'
end
target 'ImageRandomizerApp' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!
# Pods for ImageRandomizerApp
install_dependencies
target 'ImageRandomizerAppTests' do
inherit! :search_paths
#install_dependencies
# Pods for testing
end
target 'ImageRandomizerAppUITests' do
inherit! :search_paths
# Pods for testing
end
end