Wednesday, February 27, 2013

Re: [android-developers] In App Billing v3 questions

On Thu, Feb 28, 2013 at 1:34 PM, LostDev <byron.kidd@gmail.com> wrote:

>
> Is there any easy way to maintain separation between the application and our
> billing library?

Require the client activity to implement some interface and pass it as a
parameter to your library's method's as needed. It doesn't really matter
where you launch stuff from as long as it is using the right thread
(UI thread) and context (the activity's).

Additionally, you don't really need to use IabHelper at all, you can see
what it does (basically connect to a remote service and call its methods,
sometimes in a worker thread) and implement something similar. You
can't skip the onActivityResult() part though.

--
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
---
You received this message because you are subscribed to the Google Groups "Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments:

Post a Comment