diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e0291d44b9..46fd647422b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ### Payments * [FIXED][5079](https://github.com/stripe/stripe-android/pull/5079) Add 3ds2 url to list of completion URLs so callbacks work correctly. +* [FIXED][5094](https://github.com/stripe/stripe-android/pull/5094) Use correct cvc icon in card form view ## 20.4.0 - 2022-05-23 This release adds [appearance customization APIs](https://github.com/stripe/stripe-android/blob/master/paymentsheet/src/main/java/com/stripe/android/paymentsheet/PaymentSheet.kt#L186) to payment sheet and enables Affirm and AU BECS direct debit as payment methods within Payment Sheet. diff --git a/payments-core/res/drawable-night/stripe_ic_paymentsheet_cvc.xml b/payments-core/res/drawable-night/stripe_ic_paymentsheet_cvc.xml deleted file mode 100644 index 07a472146e6..00000000000 --- a/payments-core/res/drawable-night/stripe_ic_paymentsheet_cvc.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - diff --git a/payments-core/res/drawable/stripe_ic_paymentsheet_cvc.xml b/payments-core/res/drawable/stripe_ic_paymentsheet_cvc.xml deleted file mode 100644 index 5690e1c4aca..00000000000 --- a/payments-core/res/drawable/stripe_ic_paymentsheet_cvc.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - diff --git a/payments-core/src/main/java/com/stripe/android/view/CardFormView.kt b/payments-core/src/main/java/com/stripe/android/view/CardFormView.kt index fa731d6096d..e9a49039f1a 100644 --- a/payments-core/src/main/java/com/stripe/android/view/CardFormView.kt +++ b/payments-core/src/main/java/com/stripe/android/view/CardFormView.kt @@ -303,7 +303,7 @@ class CardFormView @JvmOverloads constructor( layout.error = null } - cardMultilineWidget.setCvcIcon(R.drawable.stripe_ic_paymentsheet_cvc) + cardMultilineWidget.setCvcIcon(R.drawable.stripe_ic_cvc) cardMultilineWidget.cardNumberErrorListener = StripeEditText.ErrorMessageListener { errorMessage ->