Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/joluet/MondoAndroid

An Android app for Mondo
https://github.com/joluet/MondoAndroid

Last synced: 30 days ago
JSON representation

An Android app for Mondo

Awesome Lists containing this project

README

        

# MondoAndroid

A basic Android app for [Mondo](https://getmondo.co.uk/). It lets you view your balance and a list of all transactions.

![A screenshot](./screenshot_home.png?raw=true)
![A screenshot](./screenshot_transaction.png?raw=true)

## Configuration
If you have developer access to the Mondo API you can create a _confidental_ auth client in the developer console.
Then, create a config file with your auth client details that looks like this:

``` java
package tech.jonas.mondoandroid.api;

public class OauthConfig {
public static final String CLIENT_ID = ;
public static final String CLIENT_SECRET = ;
}
```
Put that config file in the package `tech.jonas.mondoandroid.api` and you're good to go.

## Push Notifications
Please note that this app currently uses a small Sinatra server hosted with _Heroku_ to be able to receive push notifications when a new transaction is made. The source code of that Sinatra server app can be found [here](https://github.com/joluet/MondoGcmPush).
It just forwards the body of any transaction in form of a GCM push notification to the corresponding client.

## Build Instructions
Just use the gradle wrapper to build the app: `$ ./gradlew assembleDebug`