Skip to content
Ishan Khanna edited this page Jun 23, 2014 · 8 revisions

Welcome to the android-client wiki!

This page has everything to help you get started with mifos android-client development.

Git & Github

see here

Configure remotes

When a repository is cloned, it has a default remote called origin that points to your fork on GitHub, not the original repository it was forked from. To keep track of the original repository, you should add another remote named upstream:

The easiest way is to use the https url:

git remote add upstream https://github.com/openMF/android-client.git

or if you have ssh set up you can use that url instead:

git remote add upstream git@github.com:openMF/android-client.git


Android Studio Setup

see here


Building up the code

see here