
hi guys im trying to connect to Appwrite but i get this error? btw im super new to android Java development
TypeScript
^
both method setEndpoint(String) in Client and method setEndpoint(String) in Client match```
i have `{implementation("io.appwrite:sdk-for-android:6.0.0")}` and set `AppwriteClient.init(getApplicationContext());` in my MainActivity
TL;DR
Developers are experiencing an "ambiguous reference to setEndpoint" error when trying to connect to Appwrite in Android Java development. This is due to a conflict in the method name "setEndpoint."
To fix this, specify which class the method should be called from like `AppwriteClient.setEndpoint("https://cloud.appwrite.io/v1")` or `Client.setEndpoint("https://cloud.appwrite.io/v1")` to clarify the ambiguity.Recommended threads
- Stuck at pinging the server to finish ad...
I'm not using the starter app and I'm not sure how to finish connecting my app to Appwrite.io. Is there a CURL command I can run to finish setup?
- Trouble with emailVerification(appname:/...
[AppwriteException: Invalid `url` param: Invalid URI. Register your new client (app) as a new platform on your project console dashboard]. i previously had ema...
- OAUTH Error 400
I’m encountering an issue with authentication with google or apple in my Expo React Native app. It was working previously, but it has recently stopped keeping, ...
