Easily read mobile money transaction records and detect Momo fraud messages. Currently working on mtn mobile money
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
All transactions | Received Transaction | sent transaction | Airtime transaction |
---|---|---|---|
Get to know your current balance and the total amount you have spent and received thus far
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
At this section you get to see all your transactions beautifully differentiated with colors
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
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
At this category you will know the amount you are spending on airtime
Step 1. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
...
implementation 'com.github.Zakaria16.momomanager:momomanager:VERSION_NAME'
}
first allow sms read permission and receive permision(if you want to analyze incoming sms)
in the app's AndroidManifest.xml
...
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
...
Example on how to read momo data:
MtnMomoManager mtnMomoManager = new MtnMomoManager(context);
//get the sum of all received momo amount
double receivedAmount = mtnMomoManager.getTotalReceivedAmount();
//get the sum of all sent momo amount
double totalSent = mtnMomoManager.getTotalSentAmount();
//get the current momo balance
double currentBalance = mtnMomoManager.getLatestBalance();
List<Momo> resList;
//list of all momo data
resList = mtnMomoManager.getMomoData(ExtractMtnMomoInfo.ALL_MOMO);
//list of all received momo data
resList = mtnMomoManager.getMomoData(ExtractMtnMomoInfo.RECEIVED_MOMO);
//list of all sent momo data
resList = mtnMomoManager.getMomoData(ExtractMtnMomoInfo.SENT_MOMO);
//list of all momo used to buy airtime
resList = mtnMomoManager.getMomoData(ExtractMtnMomoInfo.CREDIT_MOMO);
Read the API Documentation here: API Doc