mirror of
https://github.com/lil-org/tokenary.git
synced 2024-11-27 00:54:12 +03:00
19 lines
249 B
Ruby
19 lines
249 B
Ruby
inhibit_all_warnings!
|
|
use_frameworks!
|
|
|
|
def shared_pods
|
|
pod 'Kingfisher'
|
|
pod 'TrustWalletCore'
|
|
pod 'BigInt'
|
|
end
|
|
|
|
target 'Tokenary' do
|
|
platform :osx, '11.4'
|
|
shared_pods
|
|
end
|
|
|
|
target 'Tokenary iOS' do
|
|
platform :ios, '15.0'
|
|
shared_pods
|
|
end
|