79 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
95
views
'Billing is unavailable' error with react-native-iap on Android
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 ...
-1
votes
1
answer
179
views
react-native-iap return empty array [] for IOS Subscriptions (but Android works)
I simply wants to fetch subscriptions i created in App Store Connect and Google Play Console.
I use react-native-iap v14.4. The code below works correctly on Android and return what it should :
[{&...
2
votes
2
answers
275
views
StoreKit error: missingValue(for: [StoreKit.ProductResponse.Key.price]) when fetching products (Xcode 16.4, iOS 17+, StoreKit 1 vs 2 confusion)
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....
0
votes
0
answers
69
views
Google In app purchase Inconsistant behaviour Free Trial
I'm using react-native-iap for subscriptions in my React Native app. Below is the function I use to request subscriptions on Android:
const requestSubscriptionAndroid = async (
activePlan,
...
0
votes
0
answers
183
views
iOS Subscriptions in TestFlight Using appAccountToken with React Native IAP: Wrong Token After Account Deletion
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 ...
0
votes
0
answers
130
views
Is in-app purchase verification valid with the VerifyReceipt endpoint? Apple documentation says deprecated
I am adding in-app purchases for iOS. I have identified my recurring subscriptions in the App Store. I have added the In-App Purchase feature in Xcode. In Users & Access -> Integrations -> ...
0
votes
0
answers
52
views
Unable to Process UPI Payments in IOS with requestSubscription Function in React Native IAP
Here is my code for IOS:-
const handleBuySubscription = async (productId: any) => {
try {
setLoading(true);
await clearTransactionIOS();
console.log('in handle buy ...
1
vote
0
answers
195
views
'butter/map.h' file not found
When I downgrade the React Native version from 0.72.7 to 0.69.3 and install the dependencies, then after running the code in Xcode, it gives me a butter/mao.h file not found error.
1
vote
1
answer
177
views
isAcknowledgedAndroid is always false for consumable product
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 ...
0
votes
1
answer
556
views
Cancel subscription with react-native-iap
The documentation from react-native-iap say to use deepLinkToSubscriptions() to cancel/unsubscribe. The function redirect to store and I can cancel, however, I can't get the return. I not see how make ...
1
vote
0
answers
112
views
How do i solve "error: package com.dooboolab.RNIap does not exist" for Android?
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 ...
-1
votes
1
answer
60
views
Android in App Subscription cases to be handle
I have 2 subscription in android
Basic One with 3 base plan (less feature)
1 month prepaid
6 month prepaid
12 month prepaid
Premium one with 3 base plan (more feature)
1 month auto renewal
6 month ...
0
votes
2
answers
315
views
why i can't get my subscriptions using react-native-iap
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 ...
0
votes
1
answer
1k
views
expo react-native-iap E_IAP_NOT_AVAILABLE
Hello I am am trying to utilize react-native-iap in my react-native expo app and no matter what I try I am getting the error "E_IAP_NOT_AVAILABLE" which after doing some digging is being ...
0
votes
1
answer
89
views
InApp - How to handle premium subscriptions containing same advantage as standard one?
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 ...