Skip to content

A library and app for easy reading of mobile money transaction records and detecting Momo fraud messages

Notifications You must be signed in to change notification settings

zakaria16/momomanager

Repository files navigation

momomanager

Easily read your mobile money transaction records and detect Momo fraud messages

The app allows you to know your current balance, the total amount you have received so far and the total amount you have spent.

It groups your transaction into categories

  • Received transactions
  • Sent Transactions
  • Airtime Transactions
  • It detect incoming SMS to verify if it is a legit Mobile Money message

current balance and all time Money received and spent

Get to know your current balance and the total amount you have spent and received thus far

Detect fraud Momo messages

detect whether incoming mobile money message is legit and alert you. The app only show Momo transactions from the network operator if its not from the operator is not shown

All Transactions

At this section you get to see all your transactions beautifully differentiated with colors

Received Transactions

This category shows all mobile money transaction you have received so far. you easily read the amount, the transaction ID and the date it was received

Spent Transactions

This category shows all mobile money transaction you have sent from your device so far. you easily read the amount, the transaction ID and the date it was sent

Airtime Transactions

At this category you will know the amount you are spending on airtime

Library

add the library to your project

dependencies {
    ...
    implementation 'com.mazitekgh:momomanager:1.0.0'
}

using the lib

ExtractMtnMomoInfo exi = new ExtractMomoInfo(context);
double receivedAmount = exi.getTotalReceived());
double totalSent = exi.getTotalSent();
double currentBalance = exi.getLatestBalance();