Alexey
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
- Error: User (role: guests) missing scope...
I want to send a verification code to the user and the given phone number and check it and create a session right after the user entered the secret. For me that...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...
- How to verify an user using AppWrite Fun...
I have seen similar questions but none whose solutions serve me. I have a function to verify a user with their secret and their id: https://blahblah.appwrite.gl...