false - User will select from either password or OTP
default - false
Merchant SMS permission - For android M only - setMerchantSMSPermission(false);
true - shows dialog for permission
false - no dialog is shown to the user
default - false
Review Order - For integration visithere setEnableReviewOrder(CustomBrowserConfig.ENABLE);
ENABLE - Enables Review Order
DISABLE - Disables Review Order
default - DISABLE
PackageNameForSpecificApp - Package name of the Intent App that you want to invoke.
When you want to invoke any specific Intent App instead of generic intent. You must add UPI SDK dependency for this.
1
setPackageNameForSpecificApp(<UPI_PACKAGE_ID>)
2
where UPI_PACKAGE_ID can be any of UPI apps like -
3
com.phonepe.app(PhonePe),
4
com.google.android.apps.nbu.paisa.user(GPay) etc.
Copied!
DisableIntentSeamlessFailure-
You can disable the Manual VPA Fallback option from Generic Intent tray from backend as well as from frontend.
In order to disable it from front end, set CustomBrowserConfig.ENABLE to setDisableIntentSeamlessFailure flag. Must include UPI SDK dependency to show the generic Intent Apps.
Don't clear cookies for some URLs-
We clear cookies for the URLs that load on the Custom Browser. If you don't want to clear your webpage cookies, you should provide a list of URLs on which we would not clear the cookies.
1
setDomainUrlListToUnclear(ArrayList<String>);
Copied!
EnableSslDialog
There might be a chance that the bank through an SSL error, we have handled it, we are proceeding the user to the bank page in any SSL error.
You can show the user a popup below in case of an SSL error.
To show the popup, you need to set true to enableSslDialog config field.