forked from lil-org/big-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
36 lines (32 loc) · 817 Bytes
/
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
inhibit_all_warnings!
use_frameworks!
def shared_pods
pod 'BigInt'
pod 'Kingfisher'
pod 'TrustWalletCore'
end
target 'Wallet' do
platform :osx, '12.0'
shared_pods
end
target 'Wallet iOS' do
platform :ios, '15.0'
shared_pods
end
post_install do |installer|
installer.generated_projects.each do |project|
project.build_configurations.each do |config|
project.targets.each do |target|
if target.platform_name == :ios
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
elsif target.platform_name == :osx
target.build_configurations.each do |config|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
end
end
end