-
Notifications
You must be signed in to change notification settings - Fork 21
/
Podfile
45 lines (39 loc) · 1.32 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
platform :ios, '15.0'
use_frameworks!
inhibit_all_warnings!
target 'MobileWallet' do
pod 'Tor', '408.12.2'
pod 'lottie-ios', '3.2.3'
pod 'SwiftEntryKit', '2.0.0'
pod 'ReachabilitySwift', '5.0.0'
pod 'Sentry', '8.39.0'
pod 'SwiftKeychainWrapper', '3.4.0'
pod 'Giphy', '2.1.22'
pod 'IPtProxy', '3.3.0'
pod 'Zip', '2.1.2'
pod 'SwiftyDropbox', '8.2.1'
pod 'Base58Swift', '2.1.10'
pod 'YatLib', '0.4.1'
pod 'TariCommon', '0.2.0'
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'
end
end
installer.aggregate_targets.each do |target|
target.xcconfigs.each do |variant, xcconfig|
xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
end
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
xcconfig_path = config.base_configuration_reference.real_path
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
end
end
end
end