This TH-cam CH has always bring us the best value content which we can implement it in to real world project, This is HUGEEEE ... Thank you for taking the time to do this.💯💥💥
I’ve searched for documentations and tutorials for expo in-app purchases for a month. Then I stucked. I feel so lucky today that you’ve exactly made this super helpful content for us. Thanks always for your help Sonny! I also wish you to teach us how to use expo push notification!
On the West coast of Canada these live builds are when it is 3am. East coast of Canada are 4.5 hours in front and so OK for them. Can you do these sometimes either 3 hours before or 3 hours after so we can all get a chance to watch live. 3am is right in the middle of do i go to sleep or do i get up now. Thanks for your consideration.
For icon prop type, you can do something like icon?: keyof typeof Ionicons.glyphMap (gives you back all the types for the icons :) ) Also for the screen prop type, screen: keyof RootStackParamList (is going to give all the options for the screens we created) so if we pass any incorrect screen name in our ActionRow component such as (This is goin to error out as it doesn’t match Demo)
Hello And Thank you for the wonderful Tut...unbeliveable nice... in the minut 2:17:33 it shows error that the apikey is const and we pass a string ... what's wrong with taht ? any idea ?
for those who have this classname error in the start , just create the app.d.ts file with the name of nativewind.d.ts, further read the documentation in typescript for it
Hey sonny how can I create multiple Monthly subscription products for a single app? I tried creating two monthly subscription products and revenue cat doesn't allow me to create.
My Response in log can't show and this message, [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). How to solve it? please
I’m using revenue car in my own application and right now if the user is subscribed to a standard subscription or premium they receive a certain amount of coins every month. However I’m doing that manually and storing the coins in firestore, and calculating how much the user is owed based on last expiration date vs expiration date that the user is now so I calculate the months in between and multiply that by the coins received each month. Is there a way to add coins every month with revenuecat without having to do it manually? Also how do you handle upgrades, so for example I have two subscriptions in my subscription group on Apple connect and one is standard the other is premium. I’m not sure if the user is refunded the standard and then upgraded to premium when they upgrade. Do you have a link to revenuecat at explaining how to do this?
In your tinder clone video authentication and firebase commands are outdated. Can you make a new video with new commands just for that as an addition? Please Sonny. We are getting many errors 🙏🙏
My friend Sonny we only have Windows operating system, i don't have Mac. I did as you wrote but I'm getting an error. Please make content easier for Windows users as well.
Hi every one, I'm implementing revenueCat with REACT NATIVE, I'm getting stuck, after uploading Service Account Credentials JSON file for android , I see " Could not validate Subscription API Permission", and Per doucmentation I waited more then 36 hours, But on IOS is working fine. Any help would be appreciated , Thanks
Instead of passing , extend the ActionComponent props from TouchableOpacityProps and then we can directly pass all of the ToucahbleOpacity Props to the Action component like this type ActionRowProps = TouchableOpacityProps & { title:string; screen:any; color:any; requiresPro?:boolean; vertical?:boolean; icon?:any } export function ActionRow({title,screen,color,requiresPro,vertical,icon,...restProps}:ActionRowProps) { return (
{title} ) } and then calling the component in our screens
If you are having trouble with an error like such: Cannot read property 'includes' of undefined, try putting a optional chaining '?." on the isProMember and refresh the app - const isProMember = customerInfo?.activeSubcsriptions?.includes(typesOfMembership.weekly) || customerInfo?.activeSubcsriptions?.includes(typesOfMembership.monthly) || null;
error Failed to load configuration of your project. [!] Invalid `Podfile` file: unexpected token at 'info Run CLI with --verbose flag for more details. '. # from /Users/expo/workingdir/build/ios/Podfile:14 # ------------------------------------------- # use_expo_modules! > config = use_native_modules! please assist me
if you write this error to ChatGPT ,will give you this suggestion ==> It seems like you're encountering an error when trying to build your iOS project using CocoaPods. The error message is indicating that there is an unexpected token in your Podfile on line 14. Here are a few steps to help you resolve this issue: Check line 14 of your Podfile and make sure that there are no syntax errors or typos. Make sure the use_expo_modules! and use_native_modules! commands are placed in the correct section of the Podfile. Try running the command pod install again. If the error persists, try running the command with the --verbose flag to see more details, as suggested by the error message.
This TH-cam CH has always bring us the best value content which we can implement it in to real world project,
This is HUGEEEE ... Thank you for taking the time to do this.💯💥💥
you have the best energy of anyone on youtube!! Everyone else's tutorials always make me fall asleep haha. Thanks for the quality content
Hahahaha thank you so much 🤙🏽
I’ve searched for documentations and tutorials for expo in-app purchases for a month. Then I stucked. I feel so lucky today that you’ve exactly made this super helpful content for us. Thanks always for your help Sonny! I also wish you to teach us how to use expo push notification!
Me too literally i also comment many youtubers but sonny sangha made this video and took my heart.
I like how his energy is, its just hype me up and forget this is a 3 hours live 😂
This tutorial was so helpful! I can't even describe
I’m so glad it helped you dude!! #PAPAFAM
Oh my, this is huge.. you're a blessing Sonny. 💓
On the West coast of Canada these live builds are when it is 3am. East coast of Canada are 4.5 hours in front and so OK for them. Can you do these sometimes either 3 hours before or 3 hours after so we can all get a chance to watch live. 3am is right in the middle of do i go to sleep or do i get up now. Thanks for your consideration.
finally finish with a very interesting react native tutorials, love it!
Thanks for making this! I love your videos and would love to see an Android version!
Would be amazing if you could show the Android site of In app purchases aswell
For icon prop type, you can do something like icon?: keyof typeof Ionicons.glyphMap (gives you back all the types for the icons :) )
Also for the screen prop type, screen: keyof RootStackParamList (is going to give all the options for the screens we created) so if we pass any incorrect screen name in our ActionRow component such as (This is goin to error out as it doesn’t match Demo)
this video helped me a lot, thanks!. Is it a bad practice if i restore purchases with a useEffect every time user logs in to the app?
Sonny... Thank you very much. I really do appreciate.
Would love to see you do google pay or paypal with react native.
great tutorial again
How are you casting your iPhone to Mac with the bezels ?
THE MAANNN, nice tutorial.
2:27:37 scanned and it just opens the app regurarly not in development mode... any solution please?
You are the best
Bro you got ro he the happiest developer out here 😂
Still waiting, for Google Play tutorial.. 😢
when will this be posted ;-;
its been a year....
im watching from argentina
Hello And Thank you for the wonderful Tut...unbeliveable nice... in the minut 2:17:33 it shows error that the apikey is const and we pass a string ... what's wrong with taht ? any idea ?
for those who have this classname error in the start , just create the app.d.ts file with the name of nativewind.d.ts, further read the documentation in typescript for it
What do you use to do your mockup's?
big fan bro
Hey sonny how can I create multiple Monthly subscription products for a single app? I tried creating two monthly subscription products and revenue cat doesn't allow me to create.
How long has it been?
About Modal, is there a way to make it work on android?
Hello. I don't have the developer mode on my iphone 12 with ios 16.3. I don't have xcode because i dont have a mac, how can i do please ?
Great stuff!
Rad stuff
My Response in log can't show and this message, [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). How to solve it? please
I’m using revenue car in my own application and right now if the user is subscribed to a standard subscription or premium they receive a certain amount of coins every month. However I’m doing that manually and storing the coins in firestore, and calculating how much the user is owed based on last expiration date vs expiration date that the user is now so I calculate the months in between and multiply that by the coins received each month.
Is there a way to add coins every month with revenuecat without having to do it manually?
Also how do you handle upgrades, so for example I have two subscriptions in my subscription group on Apple connect and one is standard the other is premium. I’m not sure if the user is refunded the standard and then upgraded to premium when they upgrade. Do you have a link to revenuecat at explaining how to do this?
oh shit i missed this stream but im here now
Anyone Knows one for Expo and Google Playstore? I cant find any recent on youtube.
In your tinder clone video authentication and firebase commands are outdated. Can you make a new video with new commands just for that as an addition?
Please Sonny. We are getting many errors 🙏🙏
Yeah most the old videos are outdated and tons of red line errors.
Hey Sonny, what do you use for your mock-ups?
My friend Sonny we only have Windows operating system, i don't have Mac. I did as you wrote but I'm getting an error. Please make content easier for Windows users as well.
Is there anyone wait for React Native EXPO + RevenueCat on Play Store like me ?
Why not stripe subscriptions? :(
where is the android version papa?
Hi every one, I'm implementing revenueCat with REACT NATIVE,
I'm getting stuck, after uploading Service Account Credentials JSON file for android , I see " Could not validate Subscription API Permission", and Per doucmentation I waited more then 36 hours, But on IOS is working fine.
Any help would be appreciated , Thanks
hi are you done this Project??
@@hubesh716 yes
className is not working for me😐 any solutions?
ihave same error did u solve?
@@hubesh716 thx bro if u write import "nativewind/types" it resolves
Can't understand why such a hight music ? hihi we hear music more than your voice really :)
bro, sync sound with lips properly
18K
Instead of passing , extend the ActionComponent props from TouchableOpacityProps and then we can directly pass all of the ToucahbleOpacity Props to the Action
component like this
type ActionRowProps = TouchableOpacityProps & {
title:string;
screen:any;
color:any;
requiresPro?:boolean;
vertical?:boolean;
icon?:any
}
export function ActionRow({title,screen,color,requiresPro,vertical,icon,...restProps}:ActionRowProps) {
return (
{title}
)
}
and then calling the component in our screens
allah yj3al rabbi ysahal 3alik a5ouya hhhhhh
I wish people wouldn't use Expo, its bloat code central
If you are having trouble with an error like such: Cannot read property 'includes' of undefined, try putting a optional chaining '?." on the isProMember and refresh the app -
const isProMember =
customerInfo?.activeSubcsriptions?.includes(typesOfMembership.weekly) ||
customerInfo?.activeSubcsriptions?.includes(typesOfMembership.monthly) ||
null;
mon poth son suppe de meegs et mot eri❤
Hey, try to make a vid without this awful music
Just do not be noisy I don't like to watch ur videos for this music
wouldn't it be better to use react native cli?
32709
error Failed to load configuration of your project.
[!] Invalid `Podfile` file: unexpected token at 'info Run CLI with --verbose flag for more details.
'.
# from /Users/expo/workingdir/build/ios/Podfile:14
# -------------------------------------------
# use_expo_modules!
> config = use_native_modules!
please assist me
if you write this error to ChatGPT ,will give you this suggestion ==>
It seems like you're encountering an error when trying to build your iOS project using CocoaPods. The error message is indicating that there is an unexpected token in your Podfile on line 14.
Here are a few steps to help you resolve this issue:
Check line 14 of your Podfile and make sure that there are no syntax errors or typos.
Make sure the use_expo_modules! and use_native_modules! commands are placed in the correct section of the Podfile.
Try running the command pod install again.
If the error persists, try running the command with the --verbose flag to see more details, as suggested by the error message.