Google Play In-app billing subscriptions let you sell content, services, or features in your app with automated, recurring billing.
Questions tagged [in-app-subscription]
499 questions
31
votes
3 answers
Redirect user to the Subscription page in the playstore
I've been reading this website :
http://developer.android.com/google/play/billing/billing_subscriptions.html
Because I read that "Currently, the In-app Billing API does not provide support for programatically canceling subscriptions from inside the…

maudem
- 804
- 9
- 12
30
votes
3 answers
How to implement In-App Purchases Subscription in Flutter?
I want to provide auto renewable subscription in my Flutter App for both iOS and Android devices. Users can subscribe for 1 Month.
There is not an officially maintained in-app purchase plugin yet. But there are lots of plugins about In-App…

David
- 1,071
- 3
- 11
- 13
28
votes
1 answer
Google play Subscriptions Free trial
Is there any way how to check if user've already used his free trial?
When I query sub I got the next data:
[
SkuDetails:{
"productId":"...",
"type":"subs",
"price":"...",
"price_amount_micros":0000,
…

Oleksandra
- 851
- 9
- 11
25
votes
2 answers
Google Play only shows app name in subscriptions list
My app has several subscription types, but when I go to Account > Subscriptions in Google Play app, I only manage to see app name as a subscription list entry, not the corresponding subscription name.
So, it gets really hard to recognize which…

romtsn
- 11,704
- 2
- 31
- 49
24
votes
11 answers
iOS in-app purchase subscription get free trial period length from SKProduct
I am working on in-app purchases with subscriptions.
In swift, you can get price and price locale from the SKProduct like so:
weeklyProduct.price.doubleValue
weeklyProduct.priceLocale.currencySymbol
where weeklyProduct is a SKProduct.
Is it…

mjpablo23
- 681
- 1
- 7
- 23
20
votes
2 answers
Tracking Android in-app subscription events with Firebase Analytics
We're using Firebase Analytics to track our Android app.
We've connected it to our Google Play account in hopes to receive the automatic in_app_purchase events. What we later realized is that does not support in-app subscriptions:…

alechko
- 376
- 3
- 8
16
votes
1 answer
How to cancel test subscription in Google play developer console
I initially had test accounts for testing in -app purchases in android but I since removed the testing accounts and moved the app from beta to production. Both test accounts have attempted to cancel their test subscriptions through the Google play…

Steve C.
- 1,333
- 3
- 19
- 50
15
votes
3 answers
Why there are so many pending payments for subscription from Google play console?
I have an Android application which is using subscription to monetize money. After 7 days of trial, most of active subscriptions are in payment pending status. After 1 day later, it will automatically become cancelled status.
Is this the problem…

abelhoang
- 271
- 4
- 14
14
votes
3 answers
Check subscription validity using Flutters in-app-purchase plugin?
I'm trying to implement in-app purchases using the official Flutter In-App-Purchase plugin. I've got things working, except I can't figure out how to tell if a users subscription is still active or if it expired. Even after I canceled my test…

Magnus
- 17,157
- 19
- 104
- 189
13
votes
2 answers
Get active subscriptions In-app Billing Android
I have used the In-app billing library for adding subscriptions in my app. Everything is working properly but I am unable to find how do I get a Users current active subscription?
As per the docs, the method queryPurchaseHistoryAsync returns the…

Mehul Kanzariya
- 888
- 3
- 27
- 58
13
votes
3 answers
Separate real time notification for staging and production in play console
Situation - User completes payments for subscription, the app sends purchase token to the backend with the user id. At the same time, we have also configured webhook, which also send same purchase token to map user id to same purchase token and we…

Pinkesh Darji
- 1,041
- 10
- 23
13
votes
3 answers
how to get subscription expire date in inapp v3 android
Hi I have I implemented inapp billing V3 for one year subscription for a item using android-inapp-billing-v3. I want to show remaining days in my app. I am calling getSubscriptionTransactionDetails to get Transaction details for the product but it…

maddy d
- 1,530
- 2
- 12
- 23
12
votes
2 answers
iOS subscription DID_CHANGE_RENEWAL_STATUS notification: latest_expired_receipt vs latest_receipt
I am working on adding subscription to my iOS app and I came across some very annoying inconsistencies:
My server is listening for the DID_CHANGE_RENEWAL_STATUS notification from Apple:
{
"auto_renew_status_change_date": "2019-06-05 13:42:43…

Andrei Herford
- 17,570
- 19
- 91
- 225
12
votes
2 answers
Android Purchase subscription and introductory price
Google came with with the idea of introductory price (https://support.google.com/googleplay/android-developer/answer/140504?hl=en).
My question is related to its API. I can't find the way how to get information about this via Purchases.subscriptions…

Tomas Pavlatka
- 121
- 1
- 3
12
votes
0 answers
How to get expired Google Play subscriptions?
Is there a way to get a user's expired subscriptions from Google Play? I am making a magazine-style app, and I want users to have access to content that was published while their subscription was active, regardless of whether they currently have a…

Steve Haley
- 55,374
- 17
- 77
- 85