Yes, as a rule of thumb, you will need a server for your mobile app . Most Mobile apps needs a “backend”, a server, to communicate with and to help them with keeping track of user data, app data, schedule events and push changes to the mobile app.
Read moreHow does mobile app connect to server?
In this case, a mobile application uses TCP/IP sockets (or UDP if necessary) connected to the server.
Read moreHow do I add a REST API to an existing Django project?
The basic steps are:
Read moreCan I add Django REST Framework to existing project?
Django Rest Framework is a powerful library that sits on top of existing Django projects to add robust web APIs. If you have an existing Django project with only models and a database–no views, urls, or templates required–you can quickly transform it into a RESTful API with a minimal amount of code.5 Eki 2020
Read moreHow do I integrate Django REST Framework?
Start Using the API!
Read moreHow use Django app as backend in Android?
You can use APIs to send data from android app to Django server. Android lib https://square.github.io/retrofit/ to connect to server.
Read more