Your guidance was excellent, Gigi, and it really helped me with iOS in-app purchases. Can you consider making a video tutorial for React Native in-app purchases on Android? It would greatly benefit
Great tutorial Gigi! I've been working for 2 hard weeks to develop in-app subscription in an existing application. The internet articles are too old or not so clear, tour tutorial is very good!
Perfect tutorial, helped me a lot. Your voice is sweet and explains very well, I, who have difficulty understanding, managed to understand your explanation very well. Congratulations.
Thanks for the clear and concise steps for implementing IAP. I checked other 3rd parties like RevenueCat and Nami but they try to monetize if you bring in a certain amount of income from the app. I think its best to implement in-house iap architecture to reduce costs from 3rd party iap. Thanks again for the great tutorial.
Thanks Gigi. Where in the process do you create the user's account in your app? Does the Apple process return the necessary info like email and name so that you can do that after subscription?
Ma'am Thanks for this cool video,Need one suggestion In my app their is consumable products .When app uninstall it cant be restore.So how to manage this with our server? like once user buy consumable product then we will update that with our server and when user install app again and do login then we will get that consumable product using user_id. Is it correct way for consumable product?Please help.
Hello Gigi, I have an app, and theoretically, it is already configured and the code looks good, but 'subscriptions' returns an empty array. Is it necessary for the subscription in App Store Connect to be submitted for review, or is it sufficient if it just appears as 'Ready to Submit'?
@@codewithgigi I am also getting same issue -- Empty array for Subscriptions -- ( I have created subscription and added the product id also genrated the secret key and added it in env file )
Thanks for sharing this! FYI you don’t need a MacBook just any Mac that will run Xcode, preferably Monterey OS or newer to ensure you are running v14+ without any hiccups 😊
Thank you!! It actually worked lol, I was sceptical. Is there a place inside apple dev's dashboard to see the current subscriptions or to cancel a subscription?
Hi mam, I face an issue that when I type the password in sandbox model in simulator then it show me payment done, but I didn't get response or console. can you tell how I achieve this
Hello Gigi! Thanks for this wonderdful tutorial. I am looking to integrate this on my app. I am interested did you encounter any issues in production with this approach? I was investigating a lot should I use this library or maybe something like revenueCat what are your thoughts on that?
Hi @aleksamitic6655 I have not had any issues in app store. I did not use revenueCat because its not free and I found their documentation to be lacking
i have followed your instructions , it is working but not getting proper status like- it is activate or not , and what is my current plan and how can be check with amount deductions like how can be check with real payment
@JamalVlogs I don't know that you can see this in app store connect. Once a sandbox user has made a successful purchase, the useIAP() should return a purchaseHistory for your sandbox user.
Thank you for great tutorial. Do I need to submit app for review to make this work? my app status is "Ready to Submit". Will it work for testing purpose without submitting?
@christiansouza2872 it could be a number of things, 1. Your device may not support IAP. check the iOS version. It should be a real device not a simulator. I have not been able to test on simulators. 2. Network issue - device is not connected to internet and can't connect to apple developer api. 3. make sure your subscriptions are setup correctly and are "ready to submit" in your apple developer account.
Muito bom, você me deu uma ajuda imensa! eu estava tentando entender o que era SKU no iOS, pois é diferente do Android, vendo seu vídeo, consegui fazer aqui e funcionou! Muito obrigado!!
Its displayed on the subscriptions section that, to be ablte to activate your fust subscription you need to attach a ne app version for it. You don't need to create another app but you need to push a new build.
I have created e-learning app using rozerpay integration but Apple store rejected the app. How to implement in app purchases where there are multiple programs.
@SomTechnoWorld You can add multiple products to your subscription group in apple developer account. Then in your code, you would add all the products you want to make available to users like the example code below, replacing productid-1 with your actual product id from your apple developer account... const subscriptions = Platform.select({ ios: ["productid-1". "productid-2"], });
@@codewithgigi Thank you for the reply, i tested it on real device and submitted the application for app store review but apple team rejected it saying restore button is required to restore the purchase in case of device is changed, do you have any video or documentation for such implementation. It would be a great help if you do.
i have tried the exact same code. but am still getting an empty list of subscriptions, even tho i have the correct product SKU on the ios. Any Help Pleaes !!
i m getting rejection from apple store is : ..........When validating receipts on your server, your server needs to be able to handle a production-signed app getting its receipts from Apple’s test environment. The recommended approach is for your production server to always validate receipts against the production App Store first. If validation fails with the error code “Sandbox receipt used in production,” you should validate against the test environment instead.
@formify949 It's hard to know without the full build logs, which can be found in the "Report Navigator" pane in Xcode. Some possible solutions that may help 1. Make sure you have the latest Xcode and React native. 2. Clear the build cache by deleting the contents of the `DerivedData` folder. The default location is `~/Library/Developer/Xcode/DerivedData`. 3. Try clearing your build folder in Xcode and re-run the build. Try building on your device after clearing the build. 4. Try to manually resetting the Swift toolchain by running the following command in your terminal: sudo xcode-select --reset
@formify949 Good question. That's to let apple know its a test purchase not a real purchase and it'll validate using sandbox user. You can remove isTestEnvironment from production code.
This payment problem has been bothering me for a long time until this tutorial. It is really great. Thank you very much.
Your guidance was excellent, Gigi, and it really helped me with iOS in-app purchases. Can you consider making a video tutorial for React Native in-app purchases on Android? It would greatly benefit
Great tutorial Gigi! I've been working for 2 hard weeks to develop in-app subscription in an existing application. The internet articles are too old or not so clear, tour tutorial is very good!
Glad to hear it and thanks for sharing @AdilCaomenoJunior
Perfect tutorial, helped me a lot. Your voice is sweet and explains very well, I, who have difficulty understanding, managed to understand your explanation very well. Congratulations.
Glad it helped!
Thanks for the clear and concise steps for implementing IAP. I checked other 3rd parties like RevenueCat and Nami but they try to monetize if you bring in a certain amount of income from the app. I think its best to implement in-house iap architecture to reduce costs from 3rd party iap. Thanks again for the great tutorial.
Thanks Gigi. Where in the process do you create the user's account in your app? Does the Apple process return the necessary info like email and name so that you can do that after subscription?
Ma'am Thanks for this cool video,Need one suggestion
In my app their is consumable products .When app uninstall it cant be restore.So how to manage this with our server?
like once user buy consumable product then we will update that with our server and when user install app again and do login then we will get that consumable product using user_id.
Is it correct way for consumable product?Please help.
Thank you so much for sharing your knowledge! Amazing video!
Hello Gigi, I have an app, and theoretically, it is already configured and the code looks good, but 'subscriptions' returns an empty array. Is it necessary for the subscription in App Store Connect to be submitted for review, or is it sufficient if it just appears as 'Ready to Submit'?
Hi @zaidpereyra Checkout footage at 6:37. Did you add subscription configuration in your developer account. If so you should not get an empty array
@@codewithgigi I am also getting same issue -- Empty array for Subscriptions -- ( I have created subscription and added the product id also genrated the secret key and added it in env file )
Thanks for sharing this! FYI you don’t need a MacBook just any Mac that will run Xcode, preferably Monterey OS or newer to ensure you are running v14+ without any hiccups 😊
Thank you!! It actually worked lol, I was sceptical. Is there a place inside apple dev's dashboard to see the current subscriptions or to cancel a subscription?
Thanks Gigi, your tutorial was very useful for me
Hi mam, I face an issue that when I type the password in sandbox model in simulator then it show me payment done, but I didn't get response or console. can you tell how I achieve this
Nice tutorial, keep going!!!
Hello Gigi! Thanks for this wonderdful tutorial. I am looking to integrate this on my app. I am interested did you encounter any issues in production with this approach? I was investigating a lot should I use this library or maybe something like revenueCat what are your thoughts on that?
Hi @aleksamitic6655 I have not had any issues in app store. I did not use revenueCat because its not free and I found their documentation to be lacking
Thank you, thanks to you, I completed this part quickly.
Great!!
But' I jhave one question, How we can make subscription for user specific
this helped me a lot!
i have followed your instructions ,
it is working but not getting proper status like- it is activate or not , and what is my current plan
and how can be check with amount deductions
like how can be check with real payment
Hi can you make a video, how to do in-app purchase with chargebee
Great tutorial Gigi! where we can see the successful payment of sandbox account in app connect?
@JamalVlogs I don't know that you can see this in app store connect. Once a sandbox user has made a successful purchase, the useIAP() should return a purchaseHistory for your sandbox user.
Hey Gigi I get 21002 status something to do with my reciept please help!
how to handle same apple id but different emails for subscriptions ?
just i want to know how can be check my current plan or status
Thank you for great tutorial. Do I need to submit app for review to make this work? my app status is "Ready to Submit". Will it work for testing purpose without submitting?
You can test in your iOS device before you submit it.
Great tutorial!!
I get the following error when starting my app: E_IAP_NOT_AVAILABLE, do you know what can solve it?
@christiansouza2872 it could be a number of things, 1. Your device may not support IAP. check the iOS version. It should be a real device not a simulator. I have not been able to test on simulators. 2. Network issue - device is not connected to internet and can't connect to apple developer api. 3. make sure your subscriptions are setup correctly and are "ready to submit" in your apple developer account.
I am having this same issue how did you resolve it?
I face the same issue, I solved this, you can't test this in simulator, for test this you need to connect with your physical device.
tem que dá um yarn ios para buildar dnv com ums recursos do react native iap, aí funciona
Why you didn't used init connection in this app
Nice tutorial! thanks
Muito bom, você me deu uma ajuda imensa! eu estava tentando entender o que era SKU no iOS, pois é diferente do Android, vendo seu vídeo, consegui fazer aqui e funcionou! Muito obrigado!!
But, i saw that apple takes 30% of the transaction, is it like this ?
Yes so does Google unfortunately
Could you create a tutorial for Android IAP?
Can you pls post for in app purchase subscription for android
I am using my own auth (FireBase). I want to save the subscribed users with their mail in firebase. Is it possible to do that.
my old app already on appstore should i need to create another app or i can modify for same app ?
Its displayed on the subscriptions section that, to be ablte to activate your fust subscription you need to attach a ne app version for it.
You don't need to create another app but you need to push a new build.
You can update your app. You need to update your code and your settings in developer account.
Great. Thanks. Subscribed
Thanks for the sub!
I have created e-learning app using rozerpay integration but Apple store rejected the app. How to implement in app purchases where there are multiple programs.
@SomTechnoWorld You can add multiple products to your subscription group in apple developer account. Then in your code, you would add all the products you want to make available to users like the example code below, replacing productid-1 with your actual product id from your apple developer account...
const subscriptions = Platform.select({
ios: ["productid-1". "productid-2"],
});
@@codewithgigi thanks i will try this
ONE WEEK AGO ITS DISPLAY IN RUPEES , RIGHNOW ITS DISPLAY IN DOLLAR WHY ?
is there any way we can test the purchase flow using simulator?
Not that I know of. I haven’t tried lately.
@@codewithgigi Thank you for the reply, i tested it on real device and submitted the application for app store review but apple team rejected it saying restore button is required to restore the purchase in case of device is changed, do you have any video or documentation for such implementation. It would be a great help if you do.
i have tried the exact same code. but am still getting an empty list of subscriptions, even tho i have the correct product SKU on the ios. Any Help Pleaes !!
i m getting rejection from apple store is : ..........When validating receipts on your server, your server needs to be able to handle a production-signed app getting its receipts from Apple’s test environment. The recommended approach is for your production server to always validate receipts against the production App Store first. If validation fails with the error code “Sandbox receipt used in production,” you should validate against the test environment instead.
How to get the user details?
How about for Android?
thank you so much!
You're welcome!
code cant not redeem error
Thanks Gigi
This code is not working properly
And react native CLI on Android
Do you have one for android?
@felixmilome Not yet. Coming soon.
does this work in android
Not this specific instruction. But you can use the same library in android. It’s even easier than iOS.
legend
subscriptions in useIAP hook is always empty on my end, what's the problem?
@OALKeller check that your subscription skus match the product id in app store connect.
i'm also facing the same issue. how did uyou resolve this issue?
Me too , any help please ???
me too, it's empty. It's easy to check sku matched product id so it may be not my problem
fixed it by completing the paid agreement form
very good thank you but speak so slowly :(
@gigi everytime my app getting reject from apple store can we connect on skype or google meet so that you can help me ?
i m getting error.......CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'RNIap' from project 'Pods'
@formify949 It's hard to know without the full build logs, which can be found in the "Report Navigator" pane in Xcode.
Some possible solutions that may help
1. Make sure you have the latest Xcode and React native.
2. Clear the build cache by deleting the contents of the `DerivedData` folder. The default location is `~/Library/Developer/Xcode/DerivedData`.
3. Try clearing your build folder in Xcode and re-run the build. Try building on your device after clearing the build.
4. Try to manually resetting the Swift toolchain by running the following command in your terminal:
sudo xcode-select --reset
@@codewithgigi its resolved it was IAP package version issue
const isTestEnvironment = __DEV__;........... what is this __DEV__ @Gigi
@formify949 Good question. That's to let apple know its a test purchase not a real purchase and it'll validate using sandbox user. You can remove isTestEnvironment from production code.
@@codewithgigi ok Cool thanks