Commit b65dc2a4 authored by Faizol's avatar Faizol

Update README.md

parent 471a9949
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
[![views](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fizolama%2FTechnical-C2C-Topup%2Fedit%2Fmain%2FREADME.md&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=views&edge_flat=false)](https://hits.seeyoufarm.com) [![views](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fizolama%2FTechnical-C2C-Topup%2Fedit%2Fmain%2FREADME.md&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=views&edge_flat=false)](https://hits.seeyoufarm.com)
### Table of Contents ### Table of Contents
**[Added Dependencies](#dependencies)**<br>
**[Function SingleTonAar](#singleton)**<br> **[Function SingleTonAar](#singleton)**<br>
**[Function Get Deposit Balance](#deposit-balance)**<br> **[Function Get Deposit Balance](#deposit-balance)**<br>
**[Function Get Balance E-money](#get-balance)**<br> **[Function Get Balance E-money](#get-balance)**<br>
...@@ -9,6 +10,43 @@ ...@@ -9,6 +10,43 @@
**[Function On Success](#function-on-success)**<br> **[Function On Success](#function-on-success)**<br>
**[Function On Failed](#function-on-failed)**<br> **[Function On Failed](#function-on-failed)**<br>
## Dependencies
Added dependencies in your ```build.gradle/app```
```java
implementation(group: 'com.mdd.payment', name: 'z91library-release', version: '2.1.2', ext: 'aar')
implementation(group: 'com.mdd.payment', name: 'organicdrv-release', version: '2.1.2', ext: 'aar')
implementation(group: 'com.mdd.payment', name: 'wepoylibrary-release', version: '2.2.6', ext: 'aar')
implementation(group: 'com.mdd.payment', name: 'paxlibrary-release', version: '2.1.10', ext: 'aar')
implementation(group: 'com.mdd.payment', name: 'nativecripto-release', version: '2.0.1', ext: 'aar')
implementation(group: 'com.mdd.payment', name: 'aar-deviceid-release', version: '2.0.8', ext: 'aar')
implementation(group: 'com.mdd.payment', name: 'mybanklibrary-release', version: '3.7.3-DEPOSIT', ext: 'aar')
implementation(group: 'com.mdd.topup', name: 'update-balance', version: '3.2.8-deposit-dev15', ext: 'aar')
implementation(group: 'com.mdd.payment', name: 'brizzilib-release', version: '1.1.2', ext: 'aar')
implementation(group: 'com.mdd.library', name: 'brizzi-release-sbox', version: '1.3', ext: 'aar')
```
And added this configuration in your ```build/gradle/project```
```java
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
maven {
url "https://mobile-repo.mdd.co.id:8081/artifactory/android-library/"
credentials {
username = "partner"
password = "Partner*123#"
}
}
}
```
**[Up To Table Of Contents 🔝 ](#table-of-contents)**<br>
## Singleton ## Singleton
```java ```java
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment