-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
85 lines (57 loc) · 1.36 KB
/
Podfile
File metadata and controls
85 lines (57 loc) · 1.36 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
platform :ios, '13.0'
inhibit_all_warnings!
workspace 'ComponentsHub'
target 'DemoApp' do
project 'DemoApp/DemoApp.xcodeproj'
use_frameworks!
# use_frameworks! :linkage => :static
pod 'RxSwift' , '5.1.1'
pod 'RxCocoa' , '5.1.1'
pod 'RealmSwift', '5.0.2'
pod 'Moya', '14.0.0'
pod 'SwiftyJSON'
pod 'NVActivityIndicatorView'
#target 'DemoApp_Tests' do
# inherit! :search_paths
# pod 'Kiwi'
#end
end
target 'ComponentA' do
use_frameworks!
#use_frameworks! :linkage => :static
project 'ComponentA/ComponentA.xcodeproj'
pod 'RxSwift' , '5.1.1'
end
target 'StoreLib' do
use_frameworks!
project 'StoreLib/StoreLib.xcodeproj'
pod 'RealmSwift', '5.0.2'
end
target 'NetworkLib' do
use_frameworks!
project 'NetworkLib/NetworkLib.xcodeproj'
pod 'Moya', '14.0.0'
pod 'SwiftyJSON'
end
target 'UserLogin' do
use_frameworks!
project 'UserLoginDemo/UserLoginDemo.xcodeproj'
pod 'RxSwift' , '5.1.1'
pod 'RxCocoa' , '5.1.1'
pod 'NVActivityIndicatorView'
end
target 'UserLoginDemo' do
use_frameworks!
project 'UserLoginDemo/UserLoginDemo.xcodeproj'
pod 'RxSwift' , '5.1.1'
pod 'RxCocoa' , '5.1.1'
pod 'RealmSwift', '5.0.2'
pod 'Moya', '14.0.0'
pod 'SwiftyJSON'
pod 'NVActivityIndicatorView'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
puts "#{target.name}"
end
end