In my Android application I am using Braintree payment SDK for payment. In my application user can add 5 credit cards to Braintree. I want to make first created card is as user default payment method and other are option cards. But my app make the last added card is as user default payment method.
How can I change first card in default and other are option payment methods in Braintree.
- I done get credit card information from user, add into Braintree.
- Get Nonce token from Braintree for the added card.
- I will pass the nonce token to server team, they will pay using nonce token.
Code for above steps:
CardBuilder cardBuilder = new CardBuilder();
cardBuilder.cardNumber(getCardNumber());
cardBuilder.expirationMonth(getExpirationMonth());
cardBuilder.expirationYear(getExpirationYear());
cardBuilder.cvv(getCvv());
// get nonce token here.
nonce = mBraintreeApi.tokenize(cardBuilder);
I know first payment method creation as user default payment method and how can I