Configuration AndroidApp -
- com.razorpay:checkout:1.5.13 minSdkVersion 21 targetSdkVersion 29 com.android.tools.build:gradle:3.6.3
on Lollipop and marshmallow it creating crash to solve that I override config
public void applyOverrideConfiguration(Configuration overrideConfiguration) {
if (Build.VERSION.SDK_INT <=23 && (getResources().getConfiguration().uiMode == this.getApplicationContext().getResources().getConfiguration().uiMode)) {
return;
}
super.applyOverrideConfiguration(overrideConfiguration);
}
it solved my crash but when razorpay webview open that hide inputfields
