-
Notifications
You must be signed in to change notification settings - Fork 0
/
podfile
68 lines (57 loc) · 1.07 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
62
63
64
65
66
67
68
use_frameworks!
workspace 'mineme'
project 'MinemeApp/MinemeApp.project'
project 'Onboarding/Onboarding.project'
project 'Login/Login.project'
project 'Home/Home.project'
project 'Story/Story.project'
project 'Setting/Setting.project'
project 'Common/Common.project'
def shared_pods
pod "SnapKit"
pod "RxSwift"
pod "RxCocoa"
pod "Moya/RxSwift"
pod "Kingfisher"
pod "ReactorKit"
end
def kakao_pods
pod "KakaoSDKCommon"
pod "KakaoSDKAuth"
pod "KakaoSDKUser"
end
target "MinemeApp" do
project "MinemeApp/MinemeApp.project"
shared_pods
kakao_pods
pod 'Firebase/RemoteConfig'
end
target "Onboarding" do
project "Onboarding/Onboarding.project"
shared_pods
end
target "Login" do
project "Login/Login.project"
shared_pods
kakao_pods
end
target "Home" do
project "Home/Home.project"
shared_pods
end
target "Story" do
project "Story/Story.project"
shared_pods
end
target "Setting" do
project "Setting/Setting.project"
shared_pods
end
target "Common" do
project "Common/Common.project"
pod "Moya/RxSwift"
pod "SnapKit"
pod "RxSwift"
pod "RxCocoa"
pod "Kingfisher"
end