In-app Subscriptions & Paywalls with RevenueCat in React Native

  Рет қаралды 16,859

notJust․dev

notJust․dev

Күн бұрын

Пікірлер: 41
@mertdogaray343
@mertdogaray343 6 ай бұрын
This is the cleanest and easiest explanation, thank you.
@notjustdev
@notjustdev 6 ай бұрын
Glad it was helpful!
@notjustdev
@notjustdev 8 ай бұрын
🐱 This video is sponsored by RevenueCat - a subscription platform built for mobile apps! Sign up for a free RevenueCat account here: bit.ly/3Hxi9k8
@nateliason
@nateliason 3 ай бұрын
Fantastic walkthrough, thank you so much for making it!
@notjustdev
@notjustdev 3 ай бұрын
You're welcome 🙌
@wisdomelue
@wisdomelue 8 ай бұрын
thanks for all the work you are putting in
@treksis
@treksis 8 ай бұрын
Thanks for the work. My week-end watch list 😁
@nicolasaguilar2202
@nicolasaguilar2202 2 ай бұрын
Amazing tutorial, I'm trying to once the user pay and has an active entlitement, do an update the user level in a database. How I can idenify if the user has an active entitlement (paid the suscription and is active)?
@felix-channel7655
@felix-channel7655 3 ай бұрын
do you have any toturial connect from the scratch react native cli + revenuecat (without expo) ?
@haryanvideveloper777
@haryanvideveloper777 8 ай бұрын
Does revenueCat takes any commission like play/app store ?
@dangduylinh9587
@dangduylinh9587 7 ай бұрын
I have problem when upload key to google play like you at 2:08:49. How can resolve it?
@ralpha112
@ralpha112 7 ай бұрын
im getting this error "There is an issue with your configuration. Check the underlying error for more details. There's a problem with your configuration. None of the products registered in the RevenueCat dashboard could be fetched from App Store Connect (or the StoreKit Configuration file if one is being used)." Any solution please.
@martincdt
@martincdt 6 ай бұрын
Same error, did you fix it?
@DanielA-wc6nh
@DanielA-wc6nh 4 ай бұрын
Same here
@DanielA-wc6nh
@DanielA-wc6nh 4 ай бұрын
In the useEffect use await when setting the apikey that works for me put the code on a function with async and just call it on useEffect
@SamuelIbiyemi-mq7mk
@SamuelIbiyemi-mq7mk 2 ай бұрын
You might have to make a new development build for your app since react-native-purchases use native codes.
@avery4staradventure
@avery4staradventure 2 ай бұрын
Solution is to make sure you create subscriptions AFTER the paid apps agreement has become active. If you created them before, delete and re-create.
@nat.serrano
@nat.serrano 7 ай бұрын
this is a good video, but I would appreciate if you also develop for android, the only reason I’m using RN is because android
@chinfanster
@chinfanster Ай бұрын
If we set up two entitlements, for example, basic and premium, does revenueCat ensure that the user only subscribes to one of them?
@notjustdev
@notjustdev Ай бұрын
Yes, I think it does
@wanderhungerbuhler
@wanderhungerbuhler 8 ай бұрын
Nice video. In iOS always works but why don't work in Android?
@Akash-em9ho
@Akash-em9ho 7 ай бұрын
Hi, Can we actually get google play payment service for a web platform anyway?
@DanielA-wc6nh
@DanielA-wc6nh 4 ай бұрын
Is not working There is an issue with your configuration. Check the underlying error for more details. There's a problem with your configuration. None of the products registered in the RevenueCat dashboard could be fetched from App Store Connect (or the StoreKit Configuration file if one is being used).
@DanielA-wc6nh
@DanielA-wc6nh 4 ай бұрын
I refactor the use effect using another function with async and use await on configure const initialPurchases = async () => { if (Platform.OS === 'ios') { console.log('ios'); await Purchases.configure({apiKey: 'appl_nNVoXMfVXkBxrxMracOsyEStTrD'}); } else if (Platform.OS === 'android') { await Purchases.configure({apiKey: 'appl_nNVoXMfVXkBxrxMracOsyEStTrD'}); } Purchases.setLogLevel(LOG_LEVEL.DEBUG); Purchases.getCustomerInfo() .then(customerInfo => { console.log('Purchases.getCustomerInfo', customerInfo); }) .catch(error => { console.log('Purchases.getCustomerInfo error', error); }); //get offerings Purchases.getOfferings() .then(offerings => { console.log('Purchases.getOfferings', offerings.all); }) .catch(error => { console.log('Purchases.getOfferings error', error); }); }; initialPurchases();
@El_ii
@El_ii 3 ай бұрын
had the same problem. You need to set up Xocde for in-app purchases and Apple Connect Idk why he didn't add it in his tutorial....
@DanielA-wc6nh
@DanielA-wc6nh 3 ай бұрын
Thanks man. I uploaded the app with in-app purchase some weeks ago.
@DanielA-wc6nh
@DanielA-wc6nh 2 ай бұрын
@AbhishekShankar-q2p This problem was becouse apikey is not setting correctly on Docs you can find examples with RN but in my case I resolver with In the useEffect use await when setting the apikey that works for me put the code on a function with async and just call it on useEffect
@abhishekshankar6305
@abhishekshankar6305 2 ай бұрын
But I am getting the correct API key in console as I am using dotenv , I am also using useEffect as you told me. ​@@DanielA-wc6nh
@FitnessClub8763
@FitnessClub8763 3 ай бұрын
How can i test this paywall on emulator or physical devices. i
@kottamasusaikumar4673
@kottamasusaikumar4673 3 ай бұрын
getting this error "There is an issue with your configuration. Check the underlying error for more details. There's a problem with your configuration. None of the products registered in the RevenueCat dashboard could be fetched from App Store Connect (or the StoreKit Configuration file if one is being used).", please help...
@antoinewaag9226
@antoinewaag9226 3 ай бұрын
I have the exact same problem.. Did you find a solution ?
@El_ii
@El_ii 3 ай бұрын
had the same problem. You need to set up Xocde for in-app purchases and Apple Connect Idk why he didn't add it in his tutorial....
@avery4staradventure
@avery4staradventure 2 ай бұрын
Solution is to make sure you create subscriptions AFTER the paid apps agreement has become active. If you created them before, delete and re-create.
@kaydenangel3742
@kaydenangel3742 7 ай бұрын
Thank you so much can you please do the one using aws amplify and connect with quicksight
@leonardbrowneda5461
@leonardbrowneda5461 16 күн бұрын
Jackson Lisa Jackson Matthew Wilson David
Easy Paywalls and Experiments Using RevenueCat
22:18
CodeWithChris
Рет қаралды 6 М.
From React to React Native in 12 Minutes
12:33
Simon Grimm
Рет қаралды 16 М.
The Joker wanted to stand at the front, but unexpectedly was beaten up by Officer Rabbit
00:12
АЗАРТНИК 4 |СЕЗОН 2 Серия
31:45
Inter Production
Рет қаралды 1,1 МЛН
А ВЫ ЛЮБИТЕ ШКОЛУ?? #shorts
00:20
Паша Осадчий
Рет қаралды 8 МЛН
Most overpowered way to build mobile apps?
8:33
Beyond Fireship
Рет қаралды 804 М.
Building an Apple Wallet Clone with React Native Reanimated
2:00:07
notJust․dev
Рет қаралды 8 М.
RevenueCat Products, Offerings, and Entitlements Explained
5:03
؟ Docker ليه بنستخدم 💙
18:52
Yehia Tech يحيى تك
Рет қаралды 81 М.
SwiftUI In-App Subscriptions with RevenueCat 2022
49:36
CodeWithChris
Рет қаралды 31 М.
Step-by-Step Android In-App Purchase Integration with RevenueCat
34:44
Fast & Easy Paywalls with RevenueCat
33:39
Sean Allen
Рет қаралды 9 М.
Build a Realtime Chat App in React Native (tutorial for beginners) 🔴
3:49:50
The Joker wanted to stand at the front, but unexpectedly was beaten up by Officer Rabbit
00:12