-
Notifications
You must be signed in to change notification settings - Fork 3
/
Podfile
56 lines (39 loc) · 818 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
use_frameworks!
workspace 'MovizySwiftUI'
def network_pods
pod 'Alamofire'
pod 'Kingfisher'
end
target 'MovizySwiftUI' do
network_pods
target 'MovizySwiftUITests' do
inherit! :search_paths
end
target 'MovizySwiftUIUITests' do
end
end
target 'NetworkLayer' do project 'NetworkLayer/NetworkLayer'
network_pods
target :NetworkLayerTests do
end
end
target 'Trailers' do project 'MovizySwiftUI/Trailers/Trailers'
network_pods
target :TrailersTests do
end
end
target 'Search' do project 'MovizySwiftUI/Search/Search'
network_pods
target :SearchTests do
end
end
target 'Movies' do project 'MovizySwiftUI/Movies/Movies'
network_pods
target :MoviesTests do
end
end
target 'Common' do project 'Common/Common'
pod 'Kingfisher'
target :CommonTests do
end
end