Implementing a credit card in an Android application

I want to implement a credit card payment process in my Android app. There is a form in my application. The user enters information about his card, and upon presentation, the service checks and accepts or rejects the card. I have no idea if there is any API or tutorial available in Android. Please help me if someone knows how to do this.

// Zeeshan

+3
source share
1 answer

I would look for any type of REST or web API. Here are some of the vendors that provide such APIs. Then, after collecting the information from the form that you generate, use an approach like HttpClient, and you can be sophisticated enough to make it appear because the call comes from the desktop browser (if necessary). Then you grab the answer, parse it and present it to the user

+1
source

Source: https://habr.com/ru/post/1778455/


All Articles