You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I am trying to integrate Braintree with my application, but the drop-in UI only shows PayPal, not the card payment option. I am using the default example code base
BraintreeDropIn.show({
clientToken: 'token',
merchantIdentifier: 'applePayMerchantIdentifier',
googlePayMerchantId: 'googlePayMerchantId',
countryCode: 'US', //apple pay setting
currencyCode: 'USD', //apple pay setting
merchantName: 'Your Merchant Name for Apple Pay',
orderTotal:'Total Price',
googlePay: true,
applePay: true,
vaultManager: true,
payPal: true,
cardDisabled: false,
darkTheme: true,
})
.then(result => console.log(result))
.catch((error) => {
if (error.code === 'USER_CANCELLATION') {
// update your UI to handle cancellation
} else {
// update your UI to handle other errors
}
});
I have checked the related Issue #52, but that option is no longer valid since it's already commented out in the latest version of the package.
The text was updated successfully, but these errors were encountered:
ajitdas123
changed the title
Credit or Debit Cart" option is not showing in android
Credit or Debit Card" option is not showing in android
Jun 5, 2022
Hello, I am trying to integrate Braintree with my application, but the drop-in UI only shows PayPal, not the card payment option. I am using the default example code base
I have checked the related Issue #52, but that option is no longer valid since it's already commented out in the latest version of the package.
The text was updated successfully, but these errors were encountered: