-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathswift-algorand-sdk.podspec
34 lines (24 loc) · 1.19 KB
/
swift-algorand-sdk.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
27
28
29
30
31
32
33
34
Pod::Spec.new do |spec|
spec.name = "swift-algorand-sdk"
spec.version = "1.1.0"
spec.summary = "A Swift SDK to interact with Algorand blockchain"
spec.description = <<-DESC
A Swift SDK that allows interaction with the Algorand blockchain. It also supports interecting with the V2 indexer and Algo Apis
DESC
spec.homepage = "https://github.com/Jesulonimi21/Swift-Algorand-Sdk"
spec.license = "MIT"
spec.author = "Akingbesote Jesulonimi"
spec.social_media_url = "https://github.com/Jesulonimi21"
spec.ios.deployment_target = "10.0"
spec.osx.deployment_target = "10.12"
spec.watchos.deployment_target = "3.0"
spec.tvos.deployment_target = "10.0"
spec.source = { :git => "https://github.com/Jesulonimi21/Swift-Algorand-Sdk.git", :tag => "#{spec.version}" }
spec.swift_version = ["5.3"]
spec.source_files = "Sources/swift-algorand-sdk/**/*.{h,c,swift}"
spec.resource_bundle = { "bundle" => "Sources/swift-algorand-sdk/Resources/*"
}
spec.dependency "Ed25519", "~> 1.0"
spec.dependency "Alamofire", "~> 5.2"
spec.dependency "MessagePacker"
end