Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/joluet/MondoAndroid
- Owner: joluet
- Created: 2016-02-18T21:39:45.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-03T21:29:05.000Z (over 8 years ago)
- Last Synced: 2024-08-03T18:19:24.071Z (4 months ago)
- Language: Java
- Size: 988 KB
- Stars: 17
- Watchers: 5
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-monzo - MondoAndroid - An Android app for Mondo (Apps)
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`