Questions tagged [in-app-subscription]

Google Play In-app billing subscriptions let you sell content, services, or features in your app with automated, recurring billing.

499 questions
4
votes
1 answer

Google play store does not return obfuscatedExternalAccountId when resubscribing after expiration

Steps to reproduce: Subscribe to a subscription in the app Go to google play store and cancel the subscription. Go back to subscriptions page Wait for the subscription to expire The subscription will now be showed below expired heading. Click on…
Hemil
  • 916
  • 9
  • 27
4
votes
3 answers

In-app subscription doesn't show test card

I have implemented in-app subscriptions in my Android app and followed Instructions : I have added one email as license tester which is present in my device(release build). But it doesn't show test card but shows real card. Also I have uploaded…
Sumit Shukla
  • 4,116
  • 5
  • 38
  • 57
4
votes
1 answer

presentCodeRedemptionSheet not showing Redeem offer button

I create offer codes on my iTunes account in my monthly subscription. I am using presentCodeRedemptionSheet StoreKit API to enter redeem code within the app using this code let paymentQueue = SKPaymentQueue.default() if #available(iOS 14.0, *)…
balkaran singh
  • 2,754
  • 1
  • 17
  • 32
4
votes
1 answer

How to cancel subscription using RevenueCat in flutter?

I have implemented subscription using RevenueCat in flutter but RevenueCat have no documentation about canceling subscription.
Ranjit Shrestha
  • 622
  • 6
  • 24
4
votes
2 answers

how to disable paused subscriptions from the Google Play Console?

To disable users to pause their subscription, do the following: Sign in to the Google Play Console. Select your app, and then go to Store presence > In-app products > Subscriptions. Expand the Subscription settings section. Check disable Pause. i…
4
votes
1 answer

Opening Apple's subscription window from within app

Is there a way to open the iPhone's Subscriptions Management window by clicking on a button within the app? I know you can open the app's settings page with UIApplication.openSettingsURLString Is there something similar to access the Subscriptions…
cesarcarlos
  • 1,271
  • 1
  • 13
  • 33
4
votes
1 answer

Google Play Billing Subscription: new policy for mandatory "Hold": what needs to be changed in the app UI?

Google will change its policy on the 1st of Nov 2020 : subscription "Hold" will need to be enabled https://android-developers.googleblog.com/2020/06/new-features-to-acquire-and-retain-subscribers.html At the moment, here is how I query if a user has…
Don
  • 977
  • 3
  • 10
  • 28
4
votes
3 answers

How to check if subscription is active in iOS on app restart or reinstall

I have an iOS app (Objective C) with a subscription (non renewing). How can I check that it is still active when the user restarts the app? I have read a lot about this, but does answer not seem clear how to do this correctly. What I have currently…
James
  • 17,965
  • 11
  • 91
  • 146
4
votes
2 answers

Expo in app purchases for React Native — how to tell if subscription is current / active?

Current app is Expo for React Native which is ejected to the bare workflow. Using expo-in-app-purchases for IAP. How can you tell if a subscription is active or not? When I grab the purchase history via: const { results } =…
4
votes
2 answers

How to implement Auto renewable subscription with first time discount

I want to implement auto renewable subscription with different discounts offers to the user. I have one product id but I want to apply different discount on same product id. Scenario like this, If user purchased within 1 week of installed app then…
4
votes
2 answers

How to get subscription price from in app subscription

I have created monthly subscription in google play console account. Now I want to get subscription price according to my device region programmatically. For example If my device's region is India then I want subscription price in Indian currency If…
Android
  • 115
  • 8
4
votes
1 answer

How to use proration mode in app subscription android

I using two subscription plans monthly and yearly in my android app. If a user has subscribed monthly plan then I want to give the user an option to upgrade to a yearly plan. I have read an official document I need to use…
4
votes
1 answer

paymentState does not change from Trial period

I am implementing in-app subscriptions with Google Play and synchronize the status of those through polling to Google Play API. The subscriptions have a trial period of 3 days and I expect Google API to return paymentState=0(Pending) or 1(Received)…
4
votes
1 answer

Google Developer API for in app subscription receipt check(insufficient permissions issue)

I want to use Purchases.subscriptions:get. in my django server My Google API's project is linked my android application. And i used service account(json) of Google API, service account's permission is project's owner and google play console's…
4
votes
0 answers

How to know if iOS subscription is active

I'm adding iOS inapp subscription to my app. I'm following this great tutorial from Ray Wenderlich page: https://www.raywenderlich.com/659-in-app-purchases-auto-renewable-subscriptions-tutorial Basically the tutorial follow these steps: purchase…
Wonton
  • 1,033
  • 16
  • 33