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?