-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
57 lines (44 loc) · 804 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
platform :ios, '10.0'
use_frameworks!
workspace 'FachriApp'
def core_pods
pod 'Charts', '3.2.1'
end
def account_pods
core_pods
end
def pods
core_pods
pod 'Alamofire', '4.8.1'
end
def test_helper_pods
pod 'Quick', '2.1.0'
pod 'Nimble', '8.0.1'
pod 'Cuckoo', '1.0.3'
pods
end
target 'FachriApp' do
pods
pod 'FLEX', '2.4.0', :configurations => ['Debug']
pod 'LifetimeTracker'
target 'FachriAppTests' do
inherit! :search_paths
test_helper_pods
end
end
target 'Core' do
project 'Core/Core.xcodeproj'
core_pods
target 'CoreTests' do
inherit! :search_paths
test_helper_pods
end
end
target 'Account' do
project 'Account/Account.xcodeproj'
account_pods
target 'AccountTests' do
inherit! :search_paths
test_helper_pods
end
end