Software Developer Kit that allow you to access various features provided by Bitkub Chain.
To use this package with XCode, use the following url to search for the package:
https://github.com/bitkub-chain/bitkubchain-sdk-ios.git
To use this package with Swift package, edit Package.swift
and add the following dependency
dependencies: [
.package(
url: "https://github.com/bitkub-chain/bitkubchain-sdk-ios.git",
from: "0.1.5"
)
]
Now for any targets that depend on this package, add dependency as follow:
.target(
name: "MyTarget",
dependenciecs: [
.product(name: "BitkubChainSDK", package: "BitkubChainSDK")
]
)
Add the following source to your Podfile
source 'https://github.com/bitkub-chain/bitkubchain-specs.git'
Then within your application target add the pod as follows
target 'MyApp' do
pod 'BitkubChainSDK', '~> 0.1.5'
end
Alternatively, you can let CocoaPods resolve this package directly with git:
target 'MyApp' do
pod 'BitkubChainSDK', :git => 'https://github.com/bitkub-chain/bitkubchain-sdk-ios.git', :branch => 'main'
end
Notes: Check CocoaPods documentation for more details.
This project includes software developed by the following contributors:
-
Developed by Baptiste Lepilleur, licensed under the MIT License.
-
Developed by the OpenSSL Project and Eric Young, licensed under the OpenSSL License and the original SSLeay License.
-
This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)
-
This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)
-
Developed by Andrey Jivsov, licensed under the MIT License.