Skip to content

Commit 38a0bbd

Browse files
authored
Merge pull request #192 from Flutterwave/verificationManifestHotfix
Add Verification activity to manifest properly, bump version
2 parents 522a056 + ff5d865 commit 38a0bbd

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
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.0.4'
16+
implementation 'com.github.Flutterwave.rave-android:rave_utils:2.0.5'
1717
}
1818

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ The payment methods currenly supported are Cards, USSD, Mpesa, GH Mobile Money,
3030
If you want to use the default Drop In UI, add the `rave_android` module dependency
3131

3232
dependencies {
33-
implementation 'com.github.Flutterwave.rave-android:rave_android:2.0.4'
33+
implementation 'com.github.Flutterwave.rave-android:rave_android:2.0.5'
3434
}
3535

3636
but 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
3737

3838
dependencies {
39-
implementation 'com.github.Flutterwave.rave-android:rave_presentation:2.0.4'
39+
implementation 'com.github.Flutterwave.rave-android:rave_presentation:2.0.5'
4040
}
4141

4242
**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 28
1111
versionCode 1
12-
versionName "2.0.4"
12+
versionName "2.0.5"
1313

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

rave_android/src/main/AndroidManifest.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
android:label="@string/app_name"
1212
android:screenOrientation="portrait"
1313
android:windowSoftInputMode="adjustPan" />
14-
<activity
15-
android:name="com.flutterwave.raveutils.verification.VerificationActivity"
16-
android:screenOrientation="portrait" />
1714
<activity
1815
android:name=".card.savedcards.SavedCardsActivity"
1916
android:screenOrientation="portrait" />
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
<manifest package="com.flutterwave.raveutils" />
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.flutterwave.raveutils">
3+
4+
<application>
5+
<activity
6+
android:name=".verification.VerificationActivity"
7+
android:screenOrientation="portrait" />
8+
</application>
9+
</manifest>

0 commit comments

Comments
 (0)