File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
ui/src/main/java/io/snabble/sdk/ui/payment Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22All notable changes to this project will be documented in this file.
33
4+ ## [ 0.37.2]
5+
6+ ### Fixed
7+ - Fix VISA credit card input not opening
8+
49## [ 0.37.1]
510
611### Fixed
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ allprojects {
3131 }
3232
3333 project. ext {
34- sdkVersion= ' 0.37.1 '
34+ sdkVersion= ' 0.37.2 '
3535 versionCode= 1
3636
3737 compileSdkVersion= 30
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ object PaymentInputViewHelper {
2727 val activity = UIUtils .getHostFragmentActivity(context)
2828 val args = Bundle ()
2929 when (paymentMethod) {
30- PaymentMethod .VISA -> if (useDatatrans) {
30+ PaymentMethod .VISA -> {
3131 args.putString(CreditCardInputView .ARG_PROJECT_ID , projectId)
3232 args.putSerializable(CreditCardInputView .ARG_PAYMENT_TYPE , PaymentMethod .VISA )
3333 callback.execute(SnabbleUI .Action .SHOW_CREDIT_CARD_INPUT , args)
You can’t perform that action at this time.
0 commit comments