Skip to content

Commit

Permalink
bumped version to 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bolaware committed Jul 24, 2020
1 parent c5d0d3a commit f4c0c74
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ChargeVerificationUtils.md
Expand Up @@ -13,7 +13,7 @@ This module helps you handle charge verification when not using the default drop
**Step 2.** Add the dependency for the utils library

dependencies {
implementation 'com.github.Flutterwave.rave-android:rave_utils:2.1.4'
implementation 'com.github.Flutterwave.rave-android:rave_utils:2.1.5'
}

**Step 2.** In your payment activity or fragment, create and instance of the `RaveVerificationUtils` class
Expand Down
2 changes: 1 addition & 1 deletion README-pt-BR.md
Expand Up @@ -136,7 +136,7 @@ O objeto `message` da intent contém a resposta JSON bruta da API Rave. Isso pod
Você pode aplicar uma nova aparência alterando a cor de certas partes da interface do usuário para destacar as cores da sua marca

<style name="DefaultTheme" parent="RaveAppTheme.NoActionBar">
<item name="colorPrimary">@color/raveAndroidColorPrimary</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="OTPButtonStyle">@style/otpBtnStyle</item>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -29,13 +29,13 @@ The payment methods currently supported are Cards, USSD, Mpesa, GH Mobile Money,
If you want to use the default Drop In UI, add the `rave_android` module dependency

dependencies {
implementation 'com.github.Flutterwave.rave-android:rave_android:2.1.3'
implementation 'com.github.Flutterwave.rave-android:rave_android:2.1.5'
}

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

dependencies {
implementation 'com.github.Flutterwave.rave-android:rave_presentation:2.1.3'
implementation 'com.github.Flutterwave.rave-android:rave_presentation:2.1.5'
}

**Step 3.** Add the `INTERNET` permission to your android manifest
Expand Down Expand Up @@ -121,7 +121,7 @@ You can apply a new look by changing the color of certain parts of the UI to hig
First specify the theme in your `styles.xml` file. In this theme, you can edit the style for each of the elements you'd like to style, like the pay button, OTP button, etc.

<style name="MyCustomTheme" parent="RaveAppTheme.NoActionBar">
<item name="colorPrimary">@color/raveAndroidColorPrimary</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="OTPButtonStyle">@style/otpBtnStyle2</item>
Expand Down
2 changes: 1 addition & 1 deletion rave_android/build.gradle
Expand Up @@ -9,7 +9,7 @@ android {
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "2.1.2"
versionName "2.1.5"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit f4c0c74

Please sign in to comment.