
I can't understand how to install swift sdk. Where I need to add
TypeScript
dependencies: [
.package(url: "git@github.com:appwrite/sdk-for-apple.git", from: "4.0.2"),
],
and
TypeScript
targets: [
.target(
name: "YourAppTarget",
dependencies: [
.product(name: "", package: "sdk-for-apple")
]
),
Do I need to add Package Swift in my project or I should to add it here(photo)?
TL;DR
Developers are confused about installing the Swift SDK. They are unsure where to add the given code snippets for dependencies and targets. They are also unsure if they need to add the Package Swift in their project or if it should be added in the specified location.
Solution: To install the Swift SDK, developers need to add the given code snippets for dependencies and targets in their project's Swift Package Manager file. They do not need to add the Package Swift separately.Recommended threads
- Document Data is null.
I'm using flutter and I've just got everything set up, the document meta data is null but the actual query is fine. (see screenshot) The permission I have ar...
- Swift: Delete All Documents
In Swift, how does one delete all documents in the collection. Is the solution to iterate over each document to delete it by document id? Or is there a .deleteA...
- email verification error??
Hey, I'm trying email verificacion with this signup implementation using deep links on iOS, but when creating the account I get this exception: Exception: Erro...
