-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
67 lines (60 loc) · 1.95 KB
/
Podfile
File metadata and controls
67 lines (60 loc) · 1.95 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
platform :ios, '15.6'
use_frameworks!
inhibit_all_warnings!
target 'Permanent' do
pod 'Firebase/Analytics', '11.1.0'
pod 'Firebase/Crashlytics', '11.1.0'
pod 'Firebase/Messaging', '11.1.0'
pod 'Firebase/RemoteConfig', '11.1.0'
pod 'Protobuf', '3.22.3'
pod 'ObjectMapper', '4.2.0'
pod 'SDWebImage', '5.10.0'
pod 'SDWebImageSwiftUI', '2.2.3'
pod 'Sourcery', '1.4.1'
pod 'GoogleMaps', '8.4.0'
pod 'GooglePlaces', '8.5.0'
pod 'KeychainSwift', '20.0'
pod 'StripeApplePay', '22.8.1'
pod 'SkeletonView', '1.30.4'
pod 'Mixpanel-swift', '4.3.0'
target 'PermanentTests' do
inherit! :search_paths
pod 'Firebase'
end
target 'ShareExtension' do
inherit! :search_paths
pod 'KeychainSwift', '20.0'
pod 'SkeletonView', '1.30.4'
pod 'SDWebImage', '5.10.0'
end
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "x86_64"
end
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.7'
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "x86_64"
end
end
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['DEVELOPMENT_TEAM'] = 'C8YKZNBVWT'
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "x86_64"
end
end
# Configure main project targets
project = installer.aggregate_targets[0].user_project
project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "x86_64"
end
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "x86_64"
end
end
project.save
end