Android Application Backend from scratch

  • Replies:2
Mustafa Malik
  • Forum posts: 1

Dec 19, 2015, 3:04:33 AM via Website

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.

Reply
Deactivated Account
  • Forum posts: 263

Dec 20, 2015, 1:58:18 PM via Website

I have heard this term for the first time, could you put some light on it?

Looking for security app? Try Leo Privacy Guard 3.0.

Join Our Christmas Contest by visiting our Facebook page LEO Privacy Guard

Reply
rocksjeff
  • Forum posts: 1

Dec 21, 2015, 10:54:52 AM via Website

  1. Generate an App Engine project
  2. Add G[C][1]M registration to your app

import android.content.Intent;

@Override
protected void onCreate(Bundle savedInstanceState) {

    Intent intent = new Intent(this, RegisterActivity.class);
    startActivity(intent);
}
  1. Depl[o][2]y the sample backend server
  2. Build and run the Andr[o][3]id app

Reply