/android-retrofit-firebase-mvp-example

A Simple Android Example showcase for Retrofit and Firebase REST calls including MVP pattern

Primary LanguageJavaApache License 2.0Apache-2.0

About

Android example project showcasing retrofit consuming firebase data over REST calls.

Required Steps

Most steps are found as commits starting from the initial project commit.

Step 1 : create Android Studio sample project

I've picked Basic Activity from the available options. Any example project will do. It just provides you with the base structure for an Android App.

Step 2 : set up MVP

The Views are in place already with the Activity (and Fragments) created withing the sample. For a true MVP implementation we need to add Presenters and Models. For maximum compliance with the MVP pattern approach we'll also create View interfaces that our Activities and Fragments will implement.

Step 3 : create firebase account/project

Next we need to create a firebase project that we will consume in the following steps. Go to https://console.firebase.google.com, register if needed and create a new project.

For this example I've created a project named "Tasks" that you can reach at https://tasks-e93aa.firebaseio.com/. For now the data will be public. As soon as I've got the authenticated options documented we'll add security. To go public on your own database do:

// These rules give anyone, even people who are not users of your app, // read and write access to your database { "rules": { ".read": true, ".write": true } } from: https://firebase.google.com/docs/database/security/quickstart

Step 4 : add retrofit to your project

Add retrofit to project, instructions are at:

http://square.github.io/retrofit/

You just need to add the following dependency in your app's build.gradle file:

dependencies { compile 'com.squareup.retrofit2:retrofit:2.1.0' compile 'com.squareup.retrofit2:converter-gson:2.1.0' //... you probably have more }

Don't forget the gson converter dependency in you build.gradle file (second line) And the internet permission in the manifest

Now let's create our remote service implementation to consume the firebase endpoints.

For ease of configuration I've add a buildconfig parameter in the build.gradle file so we can change it depending on our flavor (think pilot builds). See the RemoteServiceImpl class for the endpoint configurations. Those annotations and some method signatures is really all what needs to be done. The OverviewPresenter shows how you can consume these points and get the real data.

Step 5 : create your views

In this step we'll add butterknife to the project to simplify view binding. We'll also start creating a view to display the fetched data. Once that is done we can create a view to add new items and more. This is really just finishing of the project.

http://jakewharton.github.io/butterknife/

Next Steps

We should look into authorisation for our database so not everyone can delete our data. Having tests in here would be nice too to show the benefits of the MVP model. See http://easymock.org/getting-started.html

Resources

Some other resources on this topic

All the resources used/listed before