I have an Android application with a user authentication module. Currently the system checks the user name locally. I need it to connect to a remote database server and check the user names by looking at the remote server. What is the most efficient way to do such task on Android?
I have an Android application with a user authentication module. Currently the system checks
Share
We can use Mysql server . We need to use the website in between the android app and database.
The android makes the call to website and the website request to mysql database .In return the mysql database provides the data to the website which further returns the json format to the application. finally the data from the web is parsed and used in our application.
For more detail about Mysql with php click here