
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
- Realtime unexpected behavior.
It was working but suddenly it gives me this error in log and after that no any further update for document changes.
- Email Verification
I'm currently trying to create email verification and I want to use myapp:// as the url (rather than host it on a domain). This seems to work best when using de...
- custom domain Google OAuth still calls a...
Hi, my custom domain is successfully connected. When I create a Google OAuth link on Web, Google redirects right to the link I provided . But on Android and iO...
