mirror of
https://github.com/lil-org/tokenary.git
synced 2024-11-30 13:02:49 +03:00
21 lines
449 B
Ruby
21 lines
449 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 'WalletConnect', git: 'https://github.com/grachyov/wallet-connect-swift', branch: 'master'
|
|
pod 'TrustWalletCore'
|
|
end
|
|
|
|
target 'Tokenary' do
|
|
platform :osx, '11.4'
|
|
shared_pods
|
|
end
|
|
|
|
target 'Tokenary iOS' do
|
|
platform :ios, '15.0'
|
|
shared_pods
|
|
end
|