-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
47 lines (38 loc) · 1.02 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
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
use_frameworks!
inhibit_all_warnings!
workspace 'joosum'
project 'Projects/Joosum.xcodeproj'
project 'Projects/Domain.xcodeproj'
project 'Projects/Presentation.xcodeproj'
project 'Projects/DesignSystem.xcodeproj'
# Core
project 'Projects/Core/PBNetworking/PBNetworking.xcodeproj'
def flex_layout
pod 'FlexLayout', :git => '[email protected]:pink-boss/FlexLayout.git'
end
target 'Joosum' do
project 'Projects/App/Joosum.xcodeproj'
flex_layout
pod 'PinLayout', '~> 1.0'
pod 'GoogleSignIn'
end
target 'Domain' do
project 'Projects/Domain/Domain.xcodeproj'
end
target 'Presentation' do
project 'Projects/Presentation/Presentation.xcodeproj'
flex_layout
pod 'PinLayout', '~> 1.0'
pod 'GoogleSignIn'
end
target 'DesignSystem' do
project 'Projects/DesignSystem/DesignSystem.xcodeproj'
flex_layout
pod 'PinLayout', '~> 1.0'
end
# Core
target 'PBNetworking' do
project 'Projects/Core/PBNetworking/PBNetworking.xcodeproj'
end