• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Android Application Backend from scratch

I am developing an android application which needs a backend to process login and store data remotely on a server. I have previously worked with a BaaS service "Parse" for android. but since this is my final year project for my university I need to develop a backend from scratch, I have never worked with web services. I need some guidance on how to approach this and which framework will be the best to work with.

Thanks in advance.
 
What services does your backend need to provide? You could implement a REST web service API, but the login does complicate things a little. Is it possible you could handle the login locally on the client mobile device? Once the user is authenticated locally, then you could call the web services provided by the backend. These services can be implemented relatively easily by using PHP.

http://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/
 
Back
Top Bottom