Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
53 views

I'm using react-native-iap version 13.0.4, and I'm having trouble with Android. The build I'm testing is still in the open testing track on the Play Store, and was installed via the Play Store app. I ...
bernardo.g's user avatar
2 votes
2 answers
226 views

I’m working on an iOS app with in-app purchases and I keep seeing this error when trying to fetch products: [c15f20bd_SK1] Could not parse product: missingValue(for: [StoreKit.ProductResponse.Key....
Guilherme 's user avatar
0 votes
0 answers
158 views

I'm implementing iOS subscriptions in a React Native app using react-native-iap. For iOS, we pass a UUID (appAccountToken) generated by our backend to uniquely identify users in App Store Server ...
Mohit's user avatar
  • 103
0 votes
0 answers
47 views

Here is my code for IOS:- const handleBuySubscription = async (productId: any) => { try { setLoading(true); await clearTransactionIOS(); console.log('in handle buy ...
montee sharma's user avatar
1 vote
1 answer
163 views

Description My first time implementing in-app purchase so I might have a bit less knowledge about the whole lifecycle of the IAP. I only have in-app products to buy virtual coins that the user can buy ...
Chaudhry Talha's user avatar
0 votes
0 answers
25 views

Need end-end IAP solution approach for InApp Purchase for Android using react native app for below version "react-native-iap": "^12.15.7"
suree09's user avatar
  • 11
1 vote
0 answers
109 views

I am using React Native and the package react-native-iap for handling in-app purchases. I needed to upgrade the package to be able too meet the the latest requirements from Google to use Google Play ...
Tinkywinky's user avatar
0 votes
2 answers
307 views

I created one subscriptoin on my App Store Connect enter image description here And tried to get this subscription in my code like this const { connected, getSubscriptions } = useIAP() const ...
Марко Лазарчук's user avatar
0 votes
1 answer
79 views

Using Google play subscription on Android, we provide 2 plans for our users. standard plan (2€) containing minor advantages. premium plan (10€ ) containing the same minor advantages and more. the ...
Guian's user avatar
  • 4,836
1 vote
0 answers
147 views

import { useEffect, useState } from 'react'; import { getSubscriptions, initConnection, requestSubscription } from 'react-native-iap'; import { useDispatch, useSelector } from 'react-redux'; import { ...
Rover's user avatar
  • 780
1 vote
0 answers
326 views

In react-native app , I am encountering an issue with in-app purchases in my iOS app. When I install the app directly from Xcode, in-app purchases work seamlessly. However, after archiving the app and ...
sanjay solanki's user avatar
3 votes
0 answers
1k views

I'm working on an iOS app built with Expo Application Services (EAS) and encountering issues with the react-native-iap library: getProducts({skus: ['Credits30']}) unexpectedly returns undefined. ...
Diego Olalde's user avatar
0 votes
0 answers
659 views

I have used react-native-iap-12.10.5 and add license tester in google play console and when used getProduct all device , we are able to get the productList , but when want to purchase sucessfully ...
React_Coder's user avatar
2 votes
3 answers
2k views

getProducts and getSubscriptions from useIAP hook return always undefined and products and subscriptions are always empty arrays. getProducts imported from react-native-iap is also returning an empty ...
Zero0's user avatar
  • 504
1 vote
1 answer
2k views

I have: configured subscriptions 2 products each 2 base plans - every plan is active license testers internal track testers have the same build number in internal track as in my Android studio I did ...
Babu's user avatar
  • 5,450
0 votes
1 answer
1k views

In Testflight app on iphone, on entering promo code for in-app purchase, I am getting a success message from the app store but purchaseUpdateListener is not being triggered. Tested by adding alerts ...
vrn's user avatar
  • 1
1 vote
0 answers
678 views

In the docs (https://react-native-iap.dooboolab.com/docs/guides/purchases) there is an example of adding these listeners in a class based react component and I tried to convert it to functional ...
J.Kerminen's user avatar
1 vote
0 answers
455 views

How do i make subscription in react native in app purchase library. It seems the library has been updated and my code only returns available subscriptions with a subscriptionOfferDetails property. I ...
Samuel Edeh's user avatar
5 votes
1 answer
1k views

I want to add In-App purchases (subscriptions) to my react-native app. I use react-native-iap. I added subscriptions in https://appstoreconnect.apple.com/ Features -> Subscriptions, I have 1 group ...
artak-avanesian's user avatar
1 vote
0 answers
876 views

I'm working on auto-renewable subscription using react-native-iap (mobile client) and handling subscription update via firebase function from App Store Server Notification v2 In client side, I sent ...
Danh Đào Thanh's user avatar
1 vote
2 answers
6k views

I have Integrated React-Native-iap Package on my React Native Application for Implementing the Consumable InApp purchases. Link : https://github.com/dooboolab-community/react-native-iap Here is What I ...
Mayur Prajapati - MeProgrammer's user avatar
1 vote
0 answers
228 views

How to implement Restore Purchase functionality in react native using react-native-iap? I read complete doc but not find any method to Restore Purchase.
Technical Inzi's user avatar
2 votes
0 answers
542 views

on click request for subscription and Confirm on device then Dialog will show saying: "You're all set. Your purchase was successful. [Environment: Xcode]" purchaseUpdatedListener and ...
Alok Singh's user avatar
1 vote
1 answer
404 views

I have a problem, can anyone help? I'm using react-native-iap for my app. iOS is working well but for android, on beta and store versions, the UI is strange. When there is no payment method yet, if ...
eric long's user avatar
  • 660
2 votes
0 answers
1k views

I use auto renewal subscription with react-native-iap in my app I need to check user has subscription on phone or not, for do this I use getAvailablePurchases() like this import * as RNIap from 'react-...
Yaroslav Pesotskii's user avatar