Millions of users simultaneously on Android [closed]

-3

I see that there is only beast on this page, and I am new to mobile development, so I would like to know how some things work, assuming I create an APP, and it will have a database, millions of users will access this information using a server, webservices, then I would like to understand how this structure works, to be able to study in depth! Thank you in advance!

    
asked by anonymous 17.06.2016 / 13:35

1 answer

1

Good Luiz,

Android itself has a database that stays on the device itself, thus saving the local data of your application.

If you want to save this information, treat it or interact with it, you need to set up a server, you set up a central database for all your users, and configure a Webservice running REST or SOAP to receive and send information to your users.

Good study :)

    
17.06.2016 / 14:51