Back to project page DroidBilling.
The source code is released under:
MIT License
If you think the Android project DroidBilling listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.techery.droid.billings.tasks; //from w w w.ja v a 2 s . c o m import android.content.Context; import com.android.vending.billing.IInAppBillingService; import com.techery.droid.billings.annotations.Billing; import com.techery.droid.billings.utils.ResponseHelper; import javax.inject.Inject; import de.greenrobot.event.EventBus; public abstract class BillingTask implements Runnable { @Inject @Billing Context context; @Inject @Billing EventBus bus; @Inject ResponseHelper responseHelper; @Inject IInAppBillingService service; protected IInAppBillingService getService() { return this.service; } }