Google Cloud Endpoints | Android Library | Free and Paid versions
In this project, I created an app with multiple flavors that uses
multiple libraries and Google Cloud Endpoints. The finished app consists
of four modules. A Java library that provides jokes, a Google Cloud Endpoints
(GCE) project that serves those jokes, an Android Library containing an
activity for displaying jokes, and an Android app that fetches jokes from the
GCE module and passes them to the Android Library for display.
As Android projects grow in complexity, it becomes necessary to customize the
behavior of the Gradle build tool, allowing automation of repetitive tasks.
Particularly, factoring functionality into libraries and creating product
flavors allow for much bigger projects with minimal added complexity.
I learnt the role of Gradle in building Android Apps and how to use
Gradle to manage apps of increasing complexity. I learnt to:
This is the starting point for the final project, which is provided to me in
the course repository. It
contains an activity with a banner ad and a button that purports to tell a
joke, but actually just complains. The banner ad was set up following the
instructions here:
https://developers.google.com/mobile-ads-sdk/docs/admob/android/quick-start
(You may need to download the Google Repository from the Extras section of the
Android SDK Manager.)
My first task was to create a Java library that provides jokes. Create a new
Gradle Java project either using the Android Studio wizard, or by hand. Then
introduce a project dependency between my app and the new Java Library.
I made the button display a toast showing a joke retrieved from your Java joke
telling library.
Created an Android Library containing an Activity that displays a joke
passed to it as an intent extra. Wired up project dependencies so that the
button can passes the joke from the Java Library to the Android Library.
This next task was be pretty tricky. Instead of pulling jokes directly from
our Java library, I had to set up a Google Cloud Endpoints development server,
and pull our jokes from there.
(I followed instructions from here: https://github.com/GoogleCloudPlatform/gradle-appengine-templates/tree/master/HelloEndpoints)
I introduced a project dependency between the Java library and the GCE module,
and modifid the GCE starter code to pull jokes from the Java library. Then I created
an Async task to retrieve jokes. Made the button kick off a task to retrieve a
joke, then launch the activity from your Android Library to display it.
Added code to test that your Async task successfully retrieves a non-empty
string.
Added free and paid product flavors to your app. Removed the ad (and any other irrelevant
dependencies) from the paid flavor.
To tie it all together, I create a Gradle task that: