mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-02 09:33:49 +03:00
20 lines
352 B
Ruby
20 lines
352 B
Ruby
inhibit_all_warnings!
|
|
use_frameworks!
|
|
|
|
def shared_pods
|
|
pod 'Web3Swift.io', :git => 'https://github.com/grachyov/Web3Swift.git', :branch => 'develop'
|
|
pod 'BlockiesSwift'
|
|
pod 'Kingfisher'
|
|
pod 'TrustWalletCore'
|
|
end
|
|
|
|
target 'Tokenary' do
|
|
platform :osx, '11.4'
|
|
shared_pods
|
|
end
|
|
|
|
target 'Tokenary iOS' do
|
|
platform :ios, '15.0'
|
|
shared_pods
|
|
end
|