Skip to content

Commit

Permalink
chore: fix Swift Package Manager dependency instruction (#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmshrv authored Jan 25, 2025
1 parent 37a32ae commit b13788c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ let package = Package(
targets: [
.target(
name: "YourTargetName",
dependencies: ["Supabase"] // Add as a dependency
dependencies: [
.product(name: "Supabase", package: "supabase-swift") // Add as a dependency
]
)
]
)
Expand Down

0 comments on commit b13788c

Please sign in to comment.