Skip to content

Commit 064da8d

Browse files
Merge pull request #277 from FredDominant/ft/update-zambian-mobile-money-networks
add zamtel and airtel networks
2 parents f62b5ca + 6a21012 commit 064da8d

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

ChargeVerificationUtils.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This module helps you handle charge verification when not using the default drop
1313
**Step 2.** Add the dependency for the utils library
1414

1515
dependencies {
16-
implementation 'com.github.Flutterwave.rave-android:rave_utils:2.1.36'
16+
implementation 'com.github.Flutterwave.rave-android:rave_utils:2.1.37'
1717
}
1818

1919
**Step 2.** In your payment activity or fragment, create an instance of the `RaveVerificationUtils` class

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ The payment methods currently supported are Cards, USSD, Mpesa, GH Mobile Money,
3535
If you want to use the default Drop In UI, add the `rave-android` module dependency
3636
```groovy
3737
dependencies {
38-
implementation 'com.github.flutterwave.rave-android:rave_android:2.1.36'
38+
implementation 'com.github.flutterwave.rave-android:rave_android:2.1.37'
3939
}
4040
```
4141

4242
if you are not interested in our default UI and you want to use yours and only want to interact with our core sdk, use the `rave_presentation` module
4343

4444
```groovy
4545
dependencies {
46-
implementation 'com.github.Flutterwave.rave-android:rave_presentation:2.1.36'
46+
implementation 'com.github.Flutterwave.rave-android:rave_presentation:2.1.37'
4747
}
4848
```
4949
**Step 3.** Add the `INTERNET` permission to your android manifest

rave_android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
minSdkVersion 15
1010
targetSdkVersion 30
1111
versionCode 1
12-
versionName "2.1.36"
12+
versionName "2.1.37"
1313

1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515

rave_android/src/main/res/values/strings.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,8 @@
194194
<string-array name="zm_mobile_money_networks">
195195
<item>Select network</item>
196196
<item>MTN</item>
197+
<item>AIRTEL</item>
198+
<item>ZAMTEL</item>
197199
</string-array>
198200

199201
<!-- TODO: Remove or change this placeholder text -->

rave_java_commons/src/main/java/com/flutterwave/raveandroid/rave_java_commons/RaveConstants.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ public class RaveConstants {
9191
public static String mtn = "MTN";
9292
public static String tigo = "TIGO";
9393
public static String vodafone = "VODAFONE";
94+
public static String airtel = "AIRTEL";
95+
public static String zamtel = "ZAMTEL";
9496

9597
public static String tokenNotFound = "token not found";
9698
public static String expired = "expired";

0 commit comments

Comments
 (0)