Ross Stepaniak
Ross Stepaniak

Reputation: 905

In-app subscriptions remain "purchased" after cancellation

I know it has been asked a few times here but still there's no answer explaining why it happens:

  1. Buy the subscription. (subscription is added in my beta draft of the app in the developer console)
  2. Cancel it in my phone's google play account
  3. Query the inventory and get:

    {
     "packageName":"",
     "productId":,
     "purchaseState":0,
     "autoRenewing":true
    }
    

Obviously the purchase state should be 1 (Cancelled). I tried querying after 12 hours - still same. Am I missing something?

Upvotes: 2

Views: 2120

Answers (1)

Sree Reddy Menon
Sree Reddy Menon

Reputation: 1311

Might be this reason..

From Developer Docs -Subscription Cancellation

When the user cancels a subscription, Google Play does not offer a refund for the current billing cycle. Instead, it allows the user to have access to the canceled subscription until the end of the current billing cycle, at which time it terminates the subscription.

Upvotes: 3

Related Questions