Skip to content

Commit 77375c5

Browse files
authored
Update name and README (#1)
1 parent a625309 commit 77375c5

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import PackageDescription
33

44
let package = Package(
5-
name: "Algorand",
5+
name: "swift-algorand",
66
platforms: [
77
.iOS(.v15),
88
.macOS(.v11),

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@ dependencies: [
2828
]
2929
```
3030

31+
Then add the dependency to your target:
32+
33+
```swift
34+
.target(
35+
name: "YourApp",
36+
dependencies: [
37+
.product(name: "Algorand", package: "swift-algorand")
38+
]
39+
)
40+
```
41+
3142
Or add it via Xcode:
3243
1. File > Add Package Dependencies
3344
2. Enter: `https://github.com/CorvidLabs/swift-algorand.git`

0 commit comments

Comments
 (0)