Тёмный

Quick & Easy Paywalls in Your Apps with RevenueCat | SwiftUI 

Jason Dubon
Подписаться 3 тыс.
Просмотров 3,2 тыс.
50% 1

Опубликовано:

 

12 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 37   
@tommo0
@tommo0 Год назад
loved this vid! I hope you do more tuts with supabase+swift, that combo is awesome
@jasondubon
@jasondubon Год назад
Stay tune for Thursday 👀
@TimMitra
@TimMitra 8 месяцев назад
Thanks, for explaining checking the entitlements at the end of the video
@jasondubon
@jasondubon 8 месяцев назад
Glad it was helpful!
@alin.cht.
@alin.cht. Год назад
that's dope! Exactly what I needed! Thanks RevenueCat & Jason for the tutorial!
@jasondubon
@jasondubon Год назад
Thats great to hear, Thanks Alin!!
@SongChefApp
@SongChefApp 11 месяцев назад
this is the best thing on the internet in regard to revenue cat.. thanks so much!
@jasondubon
@jasondubon 11 месяцев назад
Yessir!! 🔥🙏
@nat.serrano
@nat.serrano 7 месяцев назад
you only check if user is subscribed on launch, what if user cancel subscription? it iwll check if user is subscribed until next hard app launch, do you check when app goes to background? or what if app purchase failed? or asked to pay? is there a lsitener?
@iLoveAppl3947
@iLoveAppl3947 9 дней назад
no he doesn't check this critical thing. He is dumb
@Shopanywant
@Shopanywant 8 месяцев назад
Hello Jason thanks for this awesome video. Can you show us how to make sandbox test in another video please?
@Ilya__s
@Ilya__s 10 месяцев назад
Best RevenueCat tutorial out there 🔥🔥
@jasondubon
@jasondubon 10 месяцев назад
You already know!!
@alielbroadcaster
@alielbroadcaster Месяц назад
What app is that in your chrome new tab?
@mertunluer3549
@mertunluer3549 3 месяца назад
thx bro :)
@jemmytech5474
@jemmytech5474 10 месяцев назад
you are missing this "App Store Connect App-Specific Shared Secret" when did you added?
@jasondubon
@jasondubon 10 месяцев назад
Hi Jemmy, i will look into this!
@jemmytech5474
@jemmytech5474 10 месяцев назад
@@jasondubon i am getting an error of There’s an issue with your confirmation.
@jasondubon
@jasondubon 10 месяцев назад
@@jemmytech5474 Which SDK version are you using? I know i had a similar issue but it was solved with updating to newest SDK version
@jemmytech5474
@jemmytech5474 10 месяцев назад
@@jasondubon oh really?
@jemmytech5474
@jemmytech5474 10 месяцев назад
@@jasondubon upto the next major version
@blinkpo4
@blinkpo4 11 месяцев назад
I wonder, how do you get rid of the paywall after a purchase? I have that condition set on the purchase button, but now that the button is generated by Revenue cat, is the paywall automatically dismissed after the purchase?
@jasondubon
@jasondubon 10 месяцев назад
I am looking more into this in order to confirm
@jasondubon
@jasondubon 10 месяцев назад
on the PaywallView you can use .onPurchaseCompleted { customerInfo in } to check for the subscription and update all the code thats tracking premium subscribers and dismiss the paywall
@StretchBuddy
@StretchBuddy 11 месяцев назад
what Xcode ver is necessary?
@jasondubon
@jasondubon 11 месяцев назад
This should work on xcode 13+
@StretchBuddy
@StretchBuddy 11 месяцев назад
when i import Revenucat, error says Value of type 'Self' has no member 'scrollBounceBehavior' what's wrong??? plz help!!!
@jasondubon
@jasondubon 11 месяцев назад
this is an issue when only you import RevenueCat ? or is it when you add RC code into the file ?
@user-jy5pu6bg5p
@user-jy5pu6bg5p 11 месяцев назад
I do not understand , we can close the pay wall and use it , is the same for real users ?
@jasondubon
@jasondubon 10 месяцев назад
You can use .onPurchaseCompleted { customerInfo in } to handle all the logic to close the paywall
@IbrahimAkar
@IbrahimAkar Месяц назад
@@jasondubon I had the same issue - you can slide the paywall up or tap on X and it closes it. Had to do a painful work around. My thing is I am offering a 7 - day trial within the app. So had to build a paywall view, a Subscription class and modify my HomeView. No fun.
@user-jy5pu6bg5p
@user-jy5pu6bg5p 11 месяцев назад
how do testing ? my pay walls can scroll down is it the same in real app ?
@jasondubon
@jasondubon 11 месяцев назад
You can test it by running it on your device. It will let you subscriber and complete the purchase but it will be in a sandbox environment
@user-jy5pu6bg5p
@user-jy5pu6bg5p 11 месяцев назад
thanks now the paywall can be closed even if user is not subscribed , how can I make the paywall not close until the user is subscribed so my contentview show only after the user is subscribed @@jasondubon