views:

182

answers:

2

I have android application. I want to accept payments in this application for some services. But unfortunately I can't find solution how to provide credit card(VISA, Master Card, etc.) payment inside android app.

Can somebody help me with this? Any sample how to accept payments with any payment-getaway like authorize.net?

+1  A: 

I have absolutely no experience in doing this, but a quick Google of Google Checkout might be just what you are looking for. I would also think that Google Checkout and Android would play well together given the obvious connections between them. Google Checkout accepts most major credit cards as the background charging mechanism whilst providing developers with a nice way of tapping into the infrastructure. http://code.google.com/apis/checkout/developer/index.html

Adriaan
I don't find any information if user can do payment without redirecting to Checkout website. Also didn't find information if user can process payment with credit card without creating new google checkout profile.(like it done in paypal you can pay with card or with paypal account)
barbarian
Just a thought. But in case you have to make do, that might be the best place to start - if nothing else but to get your enterprise off the ground. Given that this is an Android question, most folks will have a Google Checkout account (because they cannot use the Market otherwise). Hence they would not need to create a new Checkout profile.
Adriaan
A: 

All you need to do is be able to work with Authorize.Net's, or any payment gateways, API to make payment. It won't really be any different then working with a website in practice.

John Conde