-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftBlade.podspec
26 lines (21 loc) · 1.12 KB
/
SwiftBlade.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = 'SwiftBlade'
s.version = '0.6.36'
s.summary = 'Swift Blade SDK for iOS Apps'
s.description = <<-DESC
Swift Blade is Swift library that allows developers to interact with Hedera Hashgraph and Ethereum smart contracts from within a Swift based app such as iOS. It provides a set of methods such as creating accounts, checking balances, transferring tokens, calling smart contracts, and more
DESC
s.homepage = 'https://github.com/Blade-Labs/swift-blade'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'Blade Labs' => 'https://bladelabs.io' }
s.source = { :git => 'https://github.com/Blade-Labs/swift-blade.git', :tag => s.version.to_s }
s.platforms = { :ios => '13.0' }
s.swift_version = '5.10'
s.source_files = 'Sources/SwiftBlade/*.swift'
s.resource_bundles = {
'SwiftBlade_SwiftBlade' => ['Sources/SwiftBlade/JS/*.*']
}
s.frameworks = 'Foundation'
s.dependency 'BigInt', '~> 5.0.0'
s.dependency 'FingerprintPro', '~> 2.4'
end