-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPodfile
61 lines (50 loc) · 1.14 KB
/
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
58
59
60
61
platform :ios, '15.0'
target 'Home' do
use_frameworks!
pod "Resolver"
pod 'RxSwift', '6.2.0'
pod 'Alamofire', '~> 5.5'
target 'HomeFrameworkTests' do
use_frameworks!
pod 'RxBlocking', '6.2.0'
pod 'MockingbirdFramework', '~> 0.20.0'
end
end
target 'HomeApplication' do
use_frameworks!
pod "Resolver"
pod 'RxSwift', '6.2.0'
target 'HomeApplicationTests' do
use_frameworks!
pod 'RxBlocking', '6.2.0'
pod 'MockingbirdFramework', '~> 0.20.0'
end
end
target 'HomeData' do
use_frameworks!
pod "Resolver"
pod 'RxSwift', '6.2.0'
target 'HomeDataTests' do
use_frameworks!
pod 'RxBlocking', '6.2.0'
pod 'MockingbirdFramework', '~> 0.20.0'
end
end
target 'HomePresentation' do
use_frameworks!
pod "Resolver"
pod 'RxSwift', '6.2.0'
target 'HomePresentationTests' do
use_frameworks!
pod 'RxBlocking', '6.2.0'
pod 'MockingbirdFramework', '~> 0.20.0'
end
end
target 'Mobile Microservices Architecture' do
use_frameworks!
target 'Mobile Microservices ArchitectureTests' do
inherit! :search_paths
end
target 'Mobile Microservices ArchitectureUITests' do
end
end