0
Can I connect two apps into one server.......Like one is for entering datas and the other one is for performing operation?
About android studio
5 ответов
+ 5
Your server is the back-end. Your app is the front-end.
Your app contacts your server by making API requests.
Entering data app:
In this app make the interface for entering the data, and submitting the data to the server by a POST API request. In the server take the data and save it to the database
Performing Operation App:
In this make the interface for other CRUD operation and let them talk to the same server using other API routes for requests. In the server corresponding to each route perform the operations
+ 7
Riisi Pator you are welcome. Feel free to direct message me anytime regarding such problems 😄😉.
+ 2
Yes of course you can, you just need to make 2 different apps that make request to same server and database.
0
How???....can you just please elaborate a bit.... you'll be thankful
0
Thanks Ashutosh.... your answer to my question was very helpful ❤️