All Projects → openMF → Mobile Wallet

openMF / Mobile Wallet

A reference implementation of Mifos platform wallet and payment capabilities

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Mobile Wallet

Https Localhost
HTTPS server running on localhost
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Bitfield
🍰 bit field diagram renderer
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Algorithm Archive
A collaborative book on algorithms
Stars: ✭ 1,880 (+1428.46%)
Mutual labels:  hacktoberfest
Monero Python
A comprehensive Python module for handling Monero cryptocurrency
Stars: ✭ 122 (-0.81%)
Mutual labels:  wallet
Vanessa Runner
утилита автоматизации базовых операций разработчика 1С
Stars: ✭ 120 (-2.44%)
Mutual labels:  hacktoberfest
Python Seabreeze
Python module for oceanoptics spectrometers
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Shell completion
Write shell completion scripts in pure Rust
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Hackatalk
TalkTalk renewal. Open source chat app built-in expo managed work flow
Stars: ✭ 123 (+0%)
Mutual labels:  hacktoberfest
Js Nightwatch Recorder
🌙 ⌚️ NightwatchJs recorder for Chrome
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Laravel Mail Editor
MailEclipse ⚡ Laravel Mailable Editor!
Stars: ✭ 1,714 (+1293.5%)
Mutual labels:  hacktoberfest
Patternlab Edition Node Webpack
The webpack wrapper around patternlab-node core, providing tasks to interact with the core library and move supporting frontend assets.
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Ansible Openwisp2 Imagegenerator
Automatically build several openwisp2 firmware images for different organizations while keeping track of their differences
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Igor
Integration with Jenkins and Git for Spinnaker
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Water Monitoring System
Water Monitoring System is an IOT based Liquid Level Monitoring system that has mechanisms to keep the user alerted in case of liquid overflow or when tank depletes.
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Chameleon
Fast HTML/XML template engine for Python
Stars: ✭ 121 (-1.63%)
Mutual labels:  hacktoberfest
Fabric Gateway Java
Hyperledger Fabric Gateway SDK for Java https://wiki.hyperledger.org/display/fabric
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Box Java Sdk
The Box SDK for Java.
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest
Onramp
Easing the onramp for new or non-PHP developers to become Laravel devs.
Stars: ✭ 123 (+0%)
Mutual labels:  hacktoberfest
Hacktoberfest2020 ccs
This is the repository for Hacktoberfest 2020
Stars: ✭ 123 (+0%)
Mutual labels:  hacktoberfest
Logrotate
Development repository for the logrotate cookbook
Stars: ✭ 122 (-0.81%)
Mutual labels:  hacktoberfest

Mobile Wallet

Mobile Wallet is an Android-based framework for mobile wallets based on top of Fineract. The app follows clean architecture and contains a core library module that can be used as a dependency in any other wallet based project. It is developed at MIFOS together with a global community.

Master Development Chat
Mobile-Wallet CI[Master/Dev] Mobile-Wallet CI[Master/Dev] Join the chat at https://gitter.im/openMF/mobile-wallet

Screenshots

Click here for more screenshots

How to Contribute

This is an OpenSource project and we would be happy to see new contributors. The issues should be raised via the GitHub issue tracker. For Issue tracker guidelines please click here. All fixes should be proposed via pull requests. For pull request guidelines please click here. For commit style guidelines please click here.

Branch Policy

We have the following branches :

  • dev All the contributions should be pushed to this branch. If you're making a contribution, you are supposed to make a pull request to dev. Please make sure it passes a build check on Travis.

    It is advisable to clone only the development branch using the following command:

    git clone -b <branch> <remote_repo>

    With Git 1.7.10 and later, add --single-branch to prevent fetching of all branches. Example, with development branch:

    git clone -b dev --single-branch https://github.com/username/mobile-wallet.git

  • master The master branch contains all the stable and bug-free working code. The development branch once complete will be merged with this branch.

  • redesign The app is presently being redesigned. All the work done under the redesign domain should be committed to this branch.

Development Setup

Before you begin, you should have already downloaded the Android Studio SDK and set it up correctly. You can find a guide on how to do this here: Setting up Android Studio.

Building the Code

  1. Fork the repository.

  2. Go to your fork and clone only the dev branch using git clone -b dev <remote_repo>(remote_repo url refers to your fork).

  3. Click on 'Open an existing Android Studio project'.

  4. Browse to the directory where you cloned the mobile-wallet repo and click OK.

  5. Let Android Studio import the project.

  6. Let the gradle sync.

  7. There should be no errors in gradle build.

  8. Set your remote upstream to the remote repository to pull changes whenever needed, using git remote add upstream https://github.com/openMF/mobile-wallet.git

  9. Pull changes from dev branch of upstream, whenever needed, using git checkout dev git pull upstream dev

GitHub Actions CI

GitHub Actions CI is a continuous integration service used to build and test software projects hosted at GitHub. We use GitHub Actions for continous integration and clean maintainence of code. All your pull requests must pass the CI build only then, it will be allowed to merge. Sometimes,when the build doesn't pass you can use these commands in your local terminal and check for the errors,

For Mac OS, you can use the following commands:

  • ./gradlew check quality checks on your project’s code using Checkstyle and generates reports from these checks.
  • ./gradlew spotlessApply an check and apply formatting to any plain-text file.
  • ./gradlew build provides a command line to execute build script.

For Windows, you can use the following commands:

  • gradlew check quality checks on your project’s code using Checkstyle and generates reports from these checks.
  • gradlew spotlessApply an check and apply formatting to any plain-text file.
  • gradlew build provides a command line to execute build script.

Instructions to get the latest APK

To get the latest apk fom the Github actions artifacts, follow these steps:

  1. Navigate to the Actions tab of this repository.
  2. Click the latest workflow from the workflows list.
  3. Scroll down to the Artifacts section and click the mobile-wallet hyperlink.
  4. After successful download, extract the zip file to your preferred location.

Wiki

https://github.com/openMF/mobile-wallet/wiki

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].