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
2424** Step 2.** Add the dependency
2525
2626 dependencies {
27- compile 'com.github.Flutterwave:rave-android:1.0.6 '
27+ compile 'com.github.Flutterwave:rave-android:1.0.7 '
2828 }
2929** Step 3.** Add the required permission
3030
@@ -55,6 +55,7 @@ Set the public key, private key and other required parameters. The `RavePayManag
5555 .acceptCardPayments(boolean)
5656 .onStagingEnv(boolean)
5757 .allowSaveCardFeature(boolean)
58+ .setMeta(List<Meta>)
5859 .withTheme(styleId)
5960 .initialize();
6061* ` 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
7172* ` acceptCardPayments() ` - Set to ` true ` if you want to accept payments via cards, else set to ` false ` . ` boolean ` . Defaults to ` true `
7273* ` onStagingEnv() ` - Set to ` true ` if you want your transactions to run in the staging environment otherwise set to ` false ` . Defaults to ` false `
7374* ` 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
7476* ` withTheme() ` - Sets the theme of the UI. ` int `
7577* ` initialize ` - Launch the Rave Payment UI
7678
You can’t perform that action at this time.
0 commit comments