4👍
✅
You can use APIs to send data from android app to Django server.
Rest APIs using Django: https://www.django-rest-framework.org/tutorial/quickstart/
Android lib https://square.github.io/retrofit/ to connect to server.
Tutorials: https://www.journaldev.com/13639/retrofit-android-example-tutorial
Flow will be:
- Call APis from Android App to Django server
- Process the data in Django server
- Send response to Android App
- Use response in Android App
Source:stackexchange.com