Skip to content

Commit

Permalink
Remove crypto from PaymentSheet. (#9822)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaynewstrom-stripe authored Dec 23, 2024
1 parent 0b7c686 commit b846637
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 119 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## XX.XX.XX - 20XX-XX-XX

### Payments
* [ADDED][9753](https://github.com/stripe/stripe-android/pull/9753) Added support for Crypto to API bindings and payment sheet.
* [ADDED][9753](https://github.com/stripe/stripe-android/pull/9753) Added support for Crypto to API bindings.
* [CHANGED][9804](https://github.com/stripe/stripe-android/pull/9804) Changed the edit and remove saved payment method flow so that tapping 'Edit' displays an icon that leads to a new update payment method screen that displays payment method details for card (last 4 digits of card number, cvc and expiry date fields), US Bank account (name, email, last 4 digits of bank account), and SEPA debit (name, email, last 4 digits of IBAN).

### Identity
Expand Down

This file was deleted.

10 changes: 0 additions & 10 deletions payments-ui-core/res/drawable/stripe_ic_paymentsheet_pm_crypto.xml

This file was deleted.

1 change: 0 additions & 1 deletion payments-ui-core/res/values/donottranslate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
<string name="stripe_paymentsheet_payment_method_sunbit">Sunbit</string>
<string name="stripe_paymentsheet_payment_method_billie">Billie</string>
<string name="stripe_paymentsheet_payment_method_satispay">Satispay</string>
<string name="stripe_paymentsheet_payment_method_crypto">Crypto</string>
<string name="stripe_paymentsheet_payment_method_alma">Alma</string>
<string name="stripe_paymentsheet_payment_method_mobile_pay">MobilePay</string>
<string name="stripe_paymentsheet_payment_method_zip">Zip</string>
Expand Down
27 changes: 0 additions & 27 deletions payments-ui-core/src/main/resources/lpms.json
Original file line number Diff line number Diff line change
Expand Up @@ -917,33 +917,6 @@
}
}
},
{
"type": "crypto",
"async": false,
"selector_icon": {
"light_theme_png": "https://js.stripe.com/v3/fingerprinted/img/payment-methods/icon-pm-crypto@3x-94c06c199e78e6d9ff9290210912bd5e.png",
"light_theme_svg": "https://js.stripe.com/v3/fingerprinted/img/payment-methods/icon-pm-crypto-15fd4ffeafd1b13e40688c8a06d79ba4.svg",
"dark_theme_png": "https://js.stripe.com/v3/fingerprinted/img/payment-methods/icon-pm-crypto_dark@3x-8f7b0e91b45cb56de550af37d41aac1d.png",
"dark_theme_svg": "https://js.stripe.com/v3/fingerprinted/img/payment-methods/icon-pm-crypto_dark-f19bb5c5400c6cde94dd53b7f1ce7217.svg"
},
"fields": [
],
"next_action_spec": {
"confirm_response_status_specs": {
"requires_action": {
"type": "redirect_to_url"
}
},
"post_confirm_handling_pi_status_specs": {
"succeeded": {
"type": "finished"
},
"requires_action": {
"type": "canceled"
}
}
}
},
{
"type": "mobilepay",
"async": false,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import com.stripe.android.lpmfoundations.paymentmethod.definitions.BlikDefinitio
import com.stripe.android.lpmfoundations.paymentmethod.definitions.BoletoDefinition
import com.stripe.android.lpmfoundations.paymentmethod.definitions.CardDefinition
import com.stripe.android.lpmfoundations.paymentmethod.definitions.CashAppPayDefinition
import com.stripe.android.lpmfoundations.paymentmethod.definitions.CryptoDefinition
import com.stripe.android.lpmfoundations.paymentmethod.definitions.EpsDefinition
import com.stripe.android.lpmfoundations.paymentmethod.definitions.FpxDefinition
import com.stripe.android.lpmfoundations.paymentmethod.definitions.GiroPayDefinition
Expand Down Expand Up @@ -55,7 +54,6 @@ internal object PaymentMethodRegistry {
BoletoDefinition,
CardDefinition,
CashAppPayDefinition,
CryptoDefinition,
EpsDefinition,
FpxDefinition,
GiroPayDefinition,
Expand Down

This file was deleted.

0 comments on commit b846637

Please sign in to comment.