Android Client Tutorial
Google Cloud Endpoints is a feature enabling developers to easily develop and host APIs on App Engine with OAuth 2.0 support. From this single API source, Endpoints also lets developers generate strongly-typed client libraries for Java (Android) and Objective-C (iOS), along with dynamically-typed libraries for JavaScript.
Purpose of the tutorial
This tutorial focuses only on building an Android client provided by the API backend tutorial .
You need to complete that backend tutorial first. This tutorial adds code to that backend project and requires the backend API to be running in order to successfully make requests against it.
Topics covered
The following topics lead you through the tutorial:
- Setup
- Creating and Configuring Your Project
- Creating a Simple Android App
- Connecting Your App to the Backend
- Authentication: Adding Client IDs to Backend and Library
- Authentication: Adding Auth Support in Client Project
Complete sample code location
The tutorial leads you through the addition of all the code required to run the sample. However, if you want to download the entire project, visit the code repository containing the appengine-endpoints-helloendpoints-android project, and use the associated README file to get started.
Next...
Continue to Setup .