Braintree Android - Use Cardbuilder to add credit

2019-07-22 15:04发布

问题:

I am new to Braintree and I want to have my own custom UI to store Credit card. I am using the following code to tokenize the credit card.

CardBuilder cardBuilder = new CardBuilder()
            .cardNumber(mCardForm.getCardNumber())
            .expirationMonth(mCardForm.getExpirationMonth())
            .expirationYear(mCardForm.getExpirationYear());

    Card.tokenize(mBraintreeFragment, cardBuilder);

I already have PCI SAQ A Compliance level. My question will it be safe carry out this operation considering my PCI level?

回答1:

Full disclosure: I work at Braintree. If you have any further questions, feel free to contact our support team.

For our mobile clients there is no heightened PCI requirement when integrating using our custom integration versus Drop-in.