its working fine on android emulater but when i build apk and tried on my phone its not working. app interface is working fine but none of the appwrite functions are triggering
Do you have any errors you can share? What did you put for the appwrite endpoint?
Just tested and had the same issue. These steps resolved the issue:
- Update app package name/bundle id (was
com.example.myapp). In android apps that begin withcom.exampleare regarded as debug apps.
- Add internet permission to the main
AndroidManifest.xml. Android docs says it's not strictly needed but I prefer making it explicit. - Update your project's platform package name/bundle id on your appwrite console.
Thats it, hope it helps. FYI, I'm using a self-hosted appwrite instance.
i did all of it before but did't work
but for some reason its working now
thanks for ur suggestions
Recommended threads
- I'm getting an error on the console "j?....
On my self hosted instance version 1.8.1 the console is giving me this error when trying to view the rows for a table I recently created. My application is read...
- local build `composer installer:dev` iss...
setup - dev container (default linux universal) WSL (test with gh codespace too) - php 8.5.7 - all extensions installed - `composer install` fine - `composer...
- Function global variables
when i create a top-level global variable in go or bun how will it behave? is the heap getting renewed on every execution or could i do some kind of temp. cachi...