I wanted to know how would I connect two apps to each other. I am making an app similiar to Uber. An example of what I need help with is in Uber when someone requests a ride that person can see who their driver is and the drivers info on the customer app, and the driver gets the passengers info in the Uber employee app. Even if one person is using an iPhone and the other is using Android.One app is for customers and the other is for employees.
Connect Two Apps
Typically that would be done using a server as the middle man. Each app would contact the server independently using an API you build. The server would be the “source of truth” responsible for maintaining a database containing the info each client will request.
How would the code look for that, as well as would I do that? What are the required steps? Also is it possible to do this through Firebase?
You would need to build the different components: app (frontend), server (backend), and database. There is no general code to do this. You should do some research on components and solutions (like Firebase—see their help/tutorials/sample code).
Is there a specific database you would use. I am looking for a good one. Could you please leave a link.