[Django]-How to connect android application with django?

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:

  1. Call APis from Android App to Django server
  2. Process the data in Django server
  3. Send response to Android App
  4. Use response in Android App

Leave a comment