I have configured an Android application to use the in-app billing module as documented at: http://developer.android.com/guide/market/billing/index.html

It works fine when tested using the UK development team's accounts which have real credit cards associated with them. However, part of my development team is based in China, and as Google Billing does not operate in China, they are unable to test the billing functionality.

Understandably the team is uncomfortable sharing personal card details, or personal account information with others. Does anybody know a work around for this? While in testing, can dummy card numbers be associated with the account?

I know this works in the merchant sandbox (http://code.google.com/apis/checkout/developer/Google_Checkout_Basic_HTML_Sandbox.html) but I can't seem to find an equivalent for Android billing testing.

Any help/guidance/support would be appreciated here. The China team is focused on a lot of the modules related to the post-purchase experience and this will be seriously compromised if we cannot find a workaround.

Thanks!

link|improve this question
Perhaps put a couple of pounds on a Visa gift card (it works like a credit card) and send it to them? – τεκ Jul 20 '11 at 16:11
I would be curious as to whether the proper testing procedures will even work in China. Maybe you should let them VPN, or something. – Tom Dignan Jul 20 '11 at 20:15
Going to assume you've seen this, developer.android.com/guide/market/billing/billing_testing.html – Tom Dignan Jul 20 '11 at 20:17
Isn't 4111-1111-1111-1111 the universal (Visa) dummy credit card number? – citizen conn Jul 20 '11 at 20:24
[TEK] - The idea of a VISA/Mastercard gift card is a good idea! I think I may give that a shot to see if it works. [Tom] - They do have to VPN through for testing, but all of their personal credit cards are China based and Google Billing uses the credit card home location when doing processing, and yes I did see the developer guides, but thanks for the link. [Citizen] - I haven't tried it, but can you associate that dummy card with your google account, try to transact, and not have the account blocked? – Kaiesh Jul 21 '11 at 0:01
show 1 more comment
feedback

2 Answers

android.test.purchased android.test.canceled android.test.refunded android.test.item_unavailable

Use these product IDs and you should get a fake card prompt in the purchase screen.

link|improve this answer
2  
OK, so to understand properly, the guidance you're providing here is to not actually try to and purchase the products created as an in-app billing items - instead, to hardcode the product ID to be the test scenario. So the testing would need to be broken into two distinct phases, [1] to test the selection of the appropriate ID within the software and the pop-up of the prompt, and [2] to test the post-purchasing activity. The only thing this doesn't allow us to test is the actual delays experienced with card authorisation in the production environment. – Kaiesh Jul 20 '11 at 23:53
Yep. With Google checkout, the cards would be pre-processed for authorisation in most of the cases. In most cases, the cards have been already authorised, but yes, there can be situations where it might take a little bit of more time to process the payment. – Kumar Bibek Jul 21 '11 at 4:25
feedback
up vote 1 down vote accepted

In order to close this thread - the solution that I eventually wound up deploying was one provided by TEK. I procured some prepaid credit cards and attached them to test accounts. It mitigated risk and allowed for our developers to use the accounts.

I should point out that the developers in China also had to VPN out of China in order to pull the market billing dialog up.

iPhone developers/users do not have the VPN problem at all.

Thanks, Kaiesh

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.