Reputation: 10030
I've been looking at these resources:
They each show a different way to integrate billing.
The first one talks about binding to IInAppBillingService
and using ServiceConnection
, the second suggests everything can be done using IabHelper
.
Which article is correct? Or if they both do the same thing, which one is generally thought to be the better approach?
Upvotes: 0
Views: 28
Reputation: 2659
This question is a duplicate of this question which explains the difference between the two.
Difference between IABHelper and IInAppBillingService in InAPPBilling
In short, IabHelper
wraps the IInAppBillingService
code to make your life easier.
Upvotes: 1