PurchasesUpdatedListener

public interface PurchasesUpdatedListener


Listener interface for purchase updates which happen when, for example, the user buys something within the app or by initiating a purchase from Google Play Store.

Summary

Public methods

abstract void
onPurchasesUpdated(
    BillingResult billingResult,
    List<Purchase> purchases
)

Implement this method to get notifications for purchases updates.

Public methods

onPurchasesUpdated

abstract void onPurchasesUpdated(
    BillingResult billingResult,
    List<Purchase> purchases
)

Implement this method to get notifications for purchases updates. Both purchases initiated by your app and the ones initiated outside of your app will be reported here.

Warning! All purchases reported here must either be consumed or acknowledged. Failure to either consume (via BillingClient#consumeAsync) or acknowledge (via acknowledgePurchase) a purchase will result in that purchase being refunded. Please refer to the integration guide for more details.

Parameters
BillingResult billingResult

Result of the purchase update. ITEM_ALREADY_OWNED if the user already owns the item being purchased, BillingClient.BillingResponseCode#ITEM_UNAVAILABLE if the item is not available to be purchased, and BillingClient.BillingResponseCode#USER_CANCELED if the user dismissed the purchase flow.

List<Purchase> purchases

List of updated purchases if present.