Does anybody have an example or seen a good tutorial on implementing in-app billing? My free app limits the number of notes that can be stored in a database, I'd like to be able to remove this limitation using in-app billing.

I've been through all the info on the dev site, several times, but I haven't been able to put it together yet.

link|improve this question

feedback

4 Answers

I created an open-source In-App Billing Library to work with in-app billing at a higher-level.

The library implements the full in-app billing specification and stores transactions in an obfuscated database.

I suggest starting with subsclassing AbstractBillingActivity, which allows you to use the basic in-app billing features with calls as simple as:

public void checkBillingSupported();
public void requestPurchase(String itemId);
public void restoreTransactions();

BillingController provides finer-grain control.

The source code is moderately documented and includes a few unit tests. Hopefully it should help to understand in-app billing better.

It should be noted that at the time of writing this the library is a very early release and should not be used as production code.

link|improve this answer
Don't suppose this is still being worked on? Looks awesome but hasn't been updated since you posted this. – easycheese Apr 14 at 20:56
Well, it just works. :) Kidding aside, we still use it at work with very little modifications, if any. – hgpc Apr 15 at 15:31
I was saying because it tells you not to use this in your published code... – easycheese Apr 22 at 0:32
1  
That was mainly to discourage coders to use it blindly, back when we first published it. After a year in the wild it appears the library is stable enough. Time to change that disclaimer... – hgpc Apr 22 at 14:26
Ah...that makes sense. Guess I will download it and attempt to integrate with my current app :) – easycheese Apr 22 at 18:34
feedback

There is a good, basic tutorial here: http://www.anddev.org/advanced-tutorials-f21/simple-inapp-billing-payment-t52060.html

link|improve this answer
this tutorial doesnt store in database the items your purchase.So next time you enter in the app you need to buy it again.... – Dayerman Nov 7 '11 at 16:26
feedback

There's an open source test framework : android-test-billing to test the In-App billing on the emulator.

This library is not an abstraction or high-level tool to deal with it. It is just an implementation of the Android In-App billing API, which conforms to the official specification.

There's step-by-step documentation on the site.

This framework was used in the project Horer - horaires de RER.

link|improve this answer
feedback

Separate out the billing from the app.

Have a "maxNotesAllowed" variable for a user. By default, maybe it's 10. If you have a silver membership, maybe that goes up to 100. A gold membership would have no limit (but you can just put like 1000000000 or something for taht.)

When someone orders a new membership plan, it updates their user profile. When a plan expires, it also updates their profile.

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.