Skip to content

Commit 1a234ec

Browse files
committed
Update repository (0.1.2)
1 parent 4e283e7 commit 1a234ec

9 files changed

Lines changed: 48 additions & 13 deletions

File tree

BitkubChainSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "BitkubChainSDK"
3-
spec.version = "0.1.1"
3+
spec.version = "0.1.2"
44
spec.summary = "Bitkub Chain SDK"
55
spec.license = { :type => "UNLICENSED" }
66
spec.homepage = "https://github.com/bitkub-chain/bitkubchain-sdk-ios.git"

BitkubChainSDKKit.xcframework/Info.plist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,32 @@
88
<key>BinaryPath</key>
99
<string>BitkubChainSDKKit.framework/BitkubChainSDKKit</string>
1010
<key>LibraryIdentifier</key>
11-
<string>ios-arm64_x86_64-simulator</string>
11+
<string>ios-arm64</string>
1212
<key>LibraryPath</key>
1313
<string>BitkubChainSDKKit.framework</string>
1414
<key>SupportedArchitectures</key>
1515
<array>
1616
<string>arm64</string>
17-
<string>x86_64</string>
1817
</array>
1918
<key>SupportedPlatform</key>
2019
<string>ios</string>
21-
<key>SupportedPlatformVariant</key>
22-
<string>simulator</string>
2320
</dict>
2421
<dict>
2522
<key>BinaryPath</key>
2623
<string>BitkubChainSDKKit.framework/BitkubChainSDKKit</string>
2724
<key>LibraryIdentifier</key>
28-
<string>ios-arm64</string>
25+
<string>ios-arm64_x86_64-simulator</string>
2926
<key>LibraryPath</key>
3027
<string>BitkubChainSDKKit.framework</string>
3128
<key>SupportedArchitectures</key>
3229
<array>
3330
<string>arm64</string>
31+
<string>x86_64</string>
3432
</array>
3533
<key>SupportedPlatform</key>
3634
<string>ios</string>
35+
<key>SupportedPlatformVariant</key>
36+
<string>simulator</string>
3737
</dict>
3838
</array>
3939
<key>CFBundlePackageType</key>
Binary file not shown.
Binary file not shown.

BitkubChainSDKKit.xcframework/ios-arm64/BitkubChainSDKKit.framework/_CodeSignature/CodeResources

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</data>
2323
<key>Info.plist</key>
2424
<data>
25-
Ndc214OSQWZQFD/mLxb8wVwuVH0=
25+
SkqKCNqyVk3wNcHn72IOQbX5Nn4=
2626
</data>
2727
<key>Modules/module.modulemap</key>
2828
<data>
Binary file not shown.

BitkubChainSDKKit.xcframework/ios-arm64_x86_64-simulator/BitkubChainSDKKit.framework/_CodeSignature/CodeResources

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</data>
2323
<key>Info.plist</key>
2424
<data>
25-
rD4HZ64OHWmiHf5aGiDjhudpME4=
25+
dq1gJTeVS7rtp3uHdr9FwDkWAmM=
2626
</data>
2727
<key>Modules/module.modulemap</key>
2828
<data>

README.md

Lines changed: 40 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
# Bitkub Chain SDK
2+
23
Software Developer Kit that allow you to access various features provided Bitkub Chain.
34

4-
## Installation
5+
## Installation
56

67
### Swift Package Manager
8+
79
To use this package with XCode, use the following url to search for the package:
810

911
```
1012
https://github.com/bitkub-chain/bitkubchain-sdk-ios.git
1113
```
1214

1315
To use this package with Swift package, edit `Package.swift` and add the following dependency
16+
1417
```swift
1518
dependencies: [
1619
.package(
17-
url: "https://github.com/bitkub-chain/bitkubchain-sdk-ios.git",
18-
from: "0.1.1"
20+
url: "https://github.com/bitkub-chain/bitkubchain-sdk-ios.git",
21+
from: "0.1.2"
1922
)
2023
]
2124
```
2225

2326
Now for any targets that depend on this package, add dependency as follow:
27+
2428
```swift
2529
.target(
2630
name: "MyTarget",
@@ -31,22 +35,53 @@ Now for any targets that depend on this package, add dependency as follow:
3135
```
3236

3337
### CocoaPods
38+
3439
Add the following source to your `Podfile`
40+
3541
```ruby
3642
source 'https://github.com/bitkub-chain/bitkubchain-spece.git'
3743
```
3844

3945
Then within your application target add the pod as follows
46+
4047
```ruby
41-
target 'MyApp' do
42-
pod 'BitkubChainSDK', '~> 0.1.1'
48+
target 'MyApp' do
49+
pod 'BitkubChainSDK', '~> 0.1.2'
4350
end
4451
```
4552

4653
Alternatively, you can let CocoaPods resolve this package directly with git:
54+
4755
```ruby
4856
target 'MyApp' do
4957
pod 'BitkubChainSDK', :git => 'https://github.com/bitkub-chain/bitkubchain-sdk-ios.git', :branch => 'main'
5058
end
5159
```
60+
5261
**Notes**: Check CocoaPods [documentation](https://guides.cocoapods.org/using/the-podfile.html) for more details.
62+
63+
## Acknowledgements
64+
65+
This project includes software developed by the following contributors:
66+
67+
### JsonCpp
68+
69+
- Developed by _Baptiste Lepilleur_, licensed under the **MIT License**.
70+
71+
- [Full License Text](BitkubChainSDKKit.xcframework/third_party/jsoncpp/LICENSE)
72+
73+
### OpenSSL
74+
75+
- Developed by the _OpenSSL Project_ and _Eric Young_, licensed under the **OpenSSL License** and the **original SSLeay License**.
76+
77+
- This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)
78+
79+
- This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)
80+
81+
- [Full License Text](BitkubChainSDKKit.xcframework/third_party/openssl/LICENSE)
82+
83+
### SHA3IUF
84+
85+
- Developed by _Andrey Jivsov_, licensed under the **MIT License**.
86+
87+
- [Full License Text](BitkubChainSDKKit.xcframework/third_party/sha3iuf/LICENSE)

0 commit comments

Comments
 (0)