File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ The minimum supported SDK version is 15
24
24
** Step 2.** Add the dependency
25
25
26
26
dependencies {
27
- compile 'com.github.Flutterwave:rave-android:1.0.6 '
27
+ compile 'com.github.Flutterwave:rave-android:1.0.7 '
28
28
}
29
29
** Step 3.** Add the required permission
30
30
@@ -55,6 +55,7 @@ Set the public key, private key and other required parameters. The `RavePayManag
55
55
.acceptCardPayments(boolean)
56
56
.onStagingEnv(boolean)
57
57
.allowSaveCardFeature(boolean)
58
+ .setMeta(List<Meta>)
58
59
.withTheme(styleId)
59
60
.initialize();
60
61
* ` setAmount() ` - This is the amount to be charged from card/account. ` double `
@@ -71,6 +72,7 @@ Set the public key, private key and other required parameters. The `RavePayManag
71
72
* ` acceptCardPayments() ` - Set to ` true ` if you want to accept payments via cards, else set to ` false ` . ` boolean ` . Defaults to ` true `
72
73
* ` onStagingEnv() ` - Set to ` true ` if you want your transactions to run in the staging environment otherwise set to ` false ` . Defaults to ` false `
73
74
* ` allowSaveCardFeature ` - Set to ` true ` if you want your users to be able to save their cards for later reuse otherwise set to ` false ` .
75
+ * ` setMeta() ` - Pass in any other custom data you wish to pass. It takes in a ` List ` of ` Meta ` objects
74
76
* ` withTheme() ` - Sets the theme of the UI. ` int `
75
77
* ` initialize ` - Launch the Rave Payment UI
76
78
You can’t perform that action at this time.
0 commit comments