Questions tagged [flutter-in-app-purchase]

55 questions
2
votes
1 answer

Purchase Token data is same after i cancelled the subscription in Flutter

Hi i am new to flutter and i have integrated Auto Renewal subscription in flutter using this dependency. https://pub.dev/packages/flutter_inapp_purchase I have done sandbox Yearly auto renewal subscription so it will auto renew at every 30 minutes a…
2
votes
0 answers

Google Billing API: Shortly after subscription purchase, subscription expired is triggered, directly followed by subscription renewed

I am using Firebase Cloud Functions to handle the back-end process for In-App-Purchases. If I purchase a subscription (on Flutter/Android client), the purchase flow works without problems. However, when the first Renewal happens, I get first a Real…
1
vote
0 answers

The in-app price conset sheet is not shown when increasing the price of a recurring subscription on iOS

I'm using the in_app_purchase package for Flutter and i'm currently trying to tackle the subscription price change for Apple, specifically the price increase scenario. As described in their documentation, user must consent in case any of the…
1
vote
0 answers

Flutter: get different plans from subscription

I have one subscription with 2 plans: The IDs I have created in Flutter are these: const List _androidProductIds = [ 'plus', 'pro', 'basic', // this is the one ]; I have tried adding basic-month and basic-year but I only get…
1
vote
1 answer

Flutter in_app_purchase purchaseStream.listen not firing any events 3.0.6

I'm trying to implement purchases in my app with the official in_app_purchase plugin but the purchaseStream.listen method is not working or firing any events. The only way to get it to work is to call _inAppPurchase.restorePurchases() which is not…
1
vote
0 answers

How to create in app purchase for a courses app. Each course has different prices and after purchase a user has lifetime access to the course

I am new to mobile development and I have stuck in app purchases. All in-app-purchases information on the internet are based on the subscription or single non-consumable product. I believe each course should be non-consumable product. But if I have…
1
vote
0 answers

How to match Apple IAP Subscription updates with transactions from flutter_inapp_purchase?

I used flutter_inapp_purchase (5.1.2) to set up IAP subscription purchases for iOS. Now, I'd like to receive subscription updates (ie. user cancelled subscription). I'm setting up a Firebase cloud function to receive the IAP notifications from…
ninajay
  • 527
  • 1
  • 5
  • 10
1
vote
1 answer

There is no information available for In-App Purchases. Try again later. 21102

First of all I found this other related old issue but with different ID but none of the solutions provided worked for me: There is no information available for In-App Purchases. Try again later. 21105 I'm testing the in app purchases on iOS and now…
Dani
  • 3,128
  • 2
  • 43
  • 91
1
vote
2 answers

Flutter: get past purchases on iOS

Everything is working on Android with the new implementation of in_app_purchase (https://pub.dev/packages/in_app_purchase) but on iOS I don't get past purchases. Following the documentation I don't see anything special. My code is: final…
Dani
  • 3,128
  • 2
  • 43
  • 91
1
vote
0 answers

plugin flutter_inapp_purchase not able to fetch the product details for android in flutter

I am testing the application through this is product id for testing 'android.test.purchased'. But I am not able to get the data from the google play console to my android device. I am using the flutter_inapp_purchase: ^3.0.1 for in-app purchases for…
1
vote
1 answer

Why Flutter RevenueCat for iOS getOffering null?

I am using Revenuecat for in app subscription for android and ios. I successfully implemented revenuecat in app subscription for android. But I am not able to implement in iOS. I have followed all the steps to setup revenuecat subscription for ios…
1
vote
0 answers

Does RevenueCart handle pricing template from Play Store?

Does someone have a clue about how implementing pricing template from PlayStore through RevenuCat ? I have a pricing template for an app on playStore. I charge 3$ for US customer. I charge 6€ for europe ones. Is it handled automatically on…
1
vote
1 answer

Flutter, in_app_purchase: way to show subscription expiration date or status

Using the in_app_purchase: ^0.3.5+1 package, I'm trying to verify that a user has an active subscription on iOS. I can get the productID and transactionDate, with purchaseDetails.productID & purchaseDetails.transactionDate. But I can't seem to get…
1
vote
1 answer

Flutter In App Purchases. Go to production

I am using the plugin in_app_purhcases in order to make purchases. I have tried it using the sandbox mode, so I am not charged for any purchase. The next step is to send the app to review and I am wondering how I can change it to production. I want…
1
vote
1 answer

Flutter google_pay implementation

So have searched all through the whole internet to see if I can get any code to help with google pay integration for flutter to replace my existing Java android code but the closet was https://pub.dev/packages/google_pay which loads Google play UI…