-
Notifications
You must be signed in to change notification settings - Fork 13
/
BeaconClientWallet.podspec
18 lines (15 loc) · 1.1 KB
/
BeaconClientWallet.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = "BeaconClientWallet"
spec.version = "3.2.4"
spec.summary = "Beacon is an implementation of the wallet interaction standard tzip-10 which describes the connection of a dApp with a wallet. BeaconClientWallet provides the Beacon implementation for wallets."
spec.description = <<-DESC
Beacon is an implementation of the Tezos wallet interaction standard tzip-10 which describes the connection of a dApp with a wallet. BeaconClientWallet provides the Beacon implementation for wallets.
DESC
spec.homepage = "https://walletbeacon.io"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Julia Samol" => "[email protected]" }
spec.ios.deployment_target = "13.0"
spec.source = { :git => "https://github.com/airgap-it/beacon-ios-sdk.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/ClientWallet/**/*.{swift}"
spec.dependency "BeaconCore", "~> #{spec.version}"
end