-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
78 lines (57 loc) · 1.37 KB
/
Podfile
File metadata and controls
78 lines (57 loc) · 1.37 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
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
use_frameworks!
inhibit_all_warnings!
workspace 'Diary.xcworkspace'
project 'Diary/App/App.xcodeproj'
project 'Diary/Domain/Domain.xcodeproj'
project 'Diary/Design/Design.xcodeproj'
project 'Diary/Presantation/Presantation.xcodeproj'
project 'Diary/Repository/Repository.xcodeproj'
project 'Diary/Service/Service.xcodeproj'
project 'Diary/Util/Util.xcodeproj'
def pods
pod 'RealmSwift'
end
target 'App' do
project 'Diary/App/App.xcodeproj'
# pod 'GoogleMaps'
pod 'NMapsMap'
pods
pod 'GoogleMLKit/Translate', '3.2.0'
end
target 'Domain' do
project 'Diary/Domain/Domain.xcodeproj'
pods
# pod "GooglePlaces", '7.1.0'
end
target 'Design' do
project 'Diary/Design/Design.xcodeproj'
pods
end
target 'Presantation' do
project 'Diary/Presantation/Presantation.xcodeproj'
pod 'NMapsMap'
pod 'GoogleMaps'
pod 'Google-Maps-iOS-Utils'
pod "GooglePlaces", '7.1.0'
pod 'GoogleMLKit/Translate', '3.2.0'
pods
end
target 'Repository' do
project 'Diary/Repository/Repository.xcodeproj'
pods
end
target 'Service' do
project 'Diary/Service/Service.xcodeproj'
pods
pod 'GoogleMaps'
pod 'Google-Maps-iOS-Utils'
pod "GooglePlaces", '7.1.0'
pod 'NMapsMap'
pod 'GoogleMLKit/Translate', '3.2.0'
end
target 'Util' do
project 'Diary/Util/Util.xcodeproj'
pods
end