This Java servlet template is a simplest example of an App Engine backend. It contains the smallest amount of boilerplate code, which makes it perfect for setting up the backend development environment in Android Studio.
If you need more abstractions/protections that Endpoints provide (like automated object marshalling/unmarshalling, OAuth 2.0) or push notification support have a look at App Engine Java Endpoints Module and App Engine Backend with Google Cloud Messaging templates.
To add the backend to your existing Android app from this backend template, open Android Studio (installation instructions) and navigate to "File → New Module..." or right-click on your project and choose "New → Module".
In the "New Module" wizard that appears, choose "Google Cloud Module":
Then choose "App Engine Java Servlet Module".
Enter the module/package names for your new backend, and choose the "client" module in your project which contains your Android app. The client module will be set up to call your newly generated backend. Module name which you've entered above (marked with red 1) will be used in your Android Studio project. Package name (marked with red 2) will be used for all classes imported from this template, as shown in the image below.
As soon as the backend module is added to your project and Gradle sync finishes, a new run configuration with your backend's module name should be created:
Rebuild your project (via "Build → Rebuild Project") and launch this run configuration. It will invoke appengineRun
task in Gradle plug-in for App Engine, which in turn will start the local App Engine Java development server.
To ensure that your backend started successfully, navigate to http://localhost:8080. If everything went well, you should see the following page:
When you created a backend module, your client module has been set up to access internet. In particular, the following permission has been added into your AndroidManifest.xml
file:
<uses-permission android:name="android.permission.INTERNET" />
To call this backend from your Android app, you simply need to make an HTTP request. The following code snippet illustrates how to create an AsyncTask which makes the HTTP request to the backend and prints the incoming result string to a toast in a given context:
class ServletPostAsyncTask extends AsyncTask<Pair<Context, String>, Void, String> {
private Context context;
@Override
protected String doInBackground(Pair<Context, String>... params) {
context = params[0].first;
String name = params[0].second;
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost("http://10.0.2.2:8080/hello"); // 10.0.2.2 is localhost's IP address in Android emulator
try {
// Add name data to request
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("name", name));
httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
HttpResponse response = httpClient.execute(httpPost);
if (response.getStatusLine().getStatusCode() == 200) {
return EntityUtils.toString(response.getEntity());
}
return "Error: " + response.getStatusLine().getStatusCode() + " " + response.getStatusLine().getReasonPhrase();
} catch (ClientProtocolException e) {
return e.getMessage();
} catch (IOException e) {
return e.getMessage();
}
}
@Override
protected void onPostExecute(String result) {
Toast.makeText(context, result, Toast.LENGTH_LONG).show();
}
}
Finally, you need to invoke this AsyncTask from one of your Android activities. For example, to execute it from MainActivity
class, add the following code snippet to MainActivity.onCreate
method:
new ServletPostAsyncTask().execute(new Pair<Context, String>(this, "Manfred"));
If you have created a ServletPostAsyncTask
and added its invokation to one of your Android app activities as per steps above, you should be all set to test your backend locally!
First, launch your backend locally as described in section 1.1. and ensure that you can access it via http://localhost:8080. Then, change the run configuration back to your Android app and run the Android emulator.
If everything goes well, you should see the following toast in your app:
If your backend is working locally, you can deploy it to Google App Engine.
-
Stop the backend, if it is running locally, by selecting Run > Stop.
-
Run Build > Deploy Module to App Engine.
-
In the Deploy to App Engine dialog, select your module. From the Deploy To: dropdown list, choose "Click here to create a new Google Developers Console project." This will open Google Developers Console
- If you are running this task for the first time, you will be prompted to
sign-in with your Google Account. Choose an account and sign in.
- If you are running this task for the first time, you will be prompted to
sign-in with your Google Account. Choose an account and sign in.
-
Create a new project and switch back to the Deploy to App Engine dialog in Android Studio.
-
Click the Refresh button in the bottom right corner of the Deploy To: dropdown list and then select the project you just created.
-
Click Deploy. You can monitor the status of your deployment in the Android Studio console.
Once you have deployed your backend to App Engine, you can connect your Android app to it by modifying ServletPostAsyncTask
class defined in section 2 above. In particular, replace the line
HttpPost httpPost = new HttpPost("http://10.0.2.2:8080/hello");
with
HttpPost httpPost = new HttpPost("http://android-app-backend.appspot.com/hello");
where android-app-backend
corresponds to your own Project ID created in section 2.2.
At this point you should be all set to run your Android app in an emulator or on the physical device, and successfully communicate with your new App Engine backend!