Integration with Braintree using my user interface (without Paypal option)

Without using the Braintree Drop-In user interface, I want to use my user interface to accept user credit card information and verify user payments on Android. Offer me any tutorial or example that will help me create my user interface.

+4
source share
1 answer

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

Android. , . CardBuilder, .

CardBuilder cardBuilder = new CardBuilder()
    .cardNumber("4111111111111111")
    .expirationDate("09/2018");

Card.tokenize(mBraintreeFragment, cardBuilder);

docs, Android SDK.

, Android SDK Android Braintree , Android SDK.

+4

All Articles