-
Notifications
You must be signed in to change notification settings - Fork 2
/
Podfile
83 lines (66 loc) · 1.68 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Uncomment the next line to define a global platform for your project
platform :ios, '16.4'
workspace 'Splito.xcworkspace'
project 'Splito.xcodeproj'
use_frameworks!
def data_pods
pod 'Swinject'
pod 'SwiftLint'
pod 'GoogleSignIn'
pod 'FirebaseAuth'
pod 'FirebaseStorage'
pod 'FirebaseFirestore'
pod 'SSZipArchive'
pod 'CocoaLumberjack/Swift'
end
def base_style_pods
pod 'SwiftLint'
pod 'Kingfisher'
pod 'CocoaLumberjack/Swift'
end
def splito_pods
data_pods
base_style_pods
end
target 'Data' do
project 'Data/Data'
data_pods
target 'DataTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'BaseStyle' do
project 'BaseStyle/BaseStyle'
base_style_pods
target 'BaseStyleTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'Splito' do
splito_pods
target 'SplitoTests' do
inherit! :search_paths
# Pods for testing
end
target 'SplitoUITests' do
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
config.build_settings['ENABLE_BITCODE'] = 'YES'
end
target.build_phases.each do |build_phase|
if build_phase.respond_to?(:name) && ["Create Symlinks to Header Folders"].include?(build_phase.name)
build_phase.output_paths = ["$(DERIVED_FILE_DIR)/header_symlinks_created"]
end
end
end
end