-
Notifications
You must be signed in to change notification settings - Fork 13
/
BeaconCore.podspec
19 lines (16 loc) · 1.09 KB
/
BeaconCore.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = "BeaconCore"
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. BeaconCore is a common base for other targets."
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. BeaconCore is a common base for other targets.
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/Core/**/*.{swift}"
spec.dependency "Sodium", "~> 0.9.1"
spec.dependency "Base58Swift", "~> 2.1.0"
end