Braintree Android - Use Cardbuilder to Add a Credit Card to SAQ A PCI Compliance Level

I am new to Braintree and I want to have my own user interface for storing a credit card. I use the following code to credit card tokenization.

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

    Card.tokenize(mBraintreeFragment, cardBuilder);

I already have a PCI SAQ A PCI compatibility level. Will my question be safe to perform this operation, given my PCI level?

+1
source share
1 answer

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

PCI Drop-in.

0

All Articles