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
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...
- I'm experiencing a critical bug on Appwr...
Hey <@870607367597850624> team / support š I'm experiencing a critical bug on Appwrite Cloud that's blocking my production Flutter app. I've already filed GitH...
- Database listRows method call failing in...
I'm getting an error when trying to use listRows in a flutter app on a database. It seems something in the backend has changed because the production version of...