Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## x.x.x - x.x.x

**Fixes**
- Fixed Android EmbeddedPaymentElement not respecting Link configuration. Now properly honors `LinkDisplay.NEVER` to hide Link payment method when configured.

## 0.52.0 - 2025-09-08
**Features**
- [#2079](https://github.com/stripe/stripe-react-native/pull/2079) Added support to differentiate between a user closing FlowController and selecting a payment option
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ class EmbeddedPaymentElementViewManager :
}

val googlePayConfig = buildGooglePayConfig(toBundleObject(map.getMap("googlePay")))
val linkConfig = PaymentSheetFragment.buildLinkConfig(toBundleObject(map.getMap("link")))
val shippingDetails =
map.getMap("defaultShippingDetails")?.let {
AddressSheetView.buildAddressDetails(it)
Expand Down Expand Up @@ -184,6 +185,7 @@ class EmbeddedPaymentElementViewManager :
.defaultBillingDetails(defaultBillingDetails)
.customer(customerConfiguration)
.googlePay(googlePayConfig)
.link(linkConfig)
.appearance(appearance)
.shippingDetails(shippingDetails)
.billingDetailsCollectionConfiguration(billingDetailsConfig)
Expand Down
Loading