Expo Push Notifications

  Рет қаралды 19,907

Jeremy

Jeremy

Күн бұрын

Пікірлер: 51
@rajeshag7884
@rajeshag7884 2 жыл бұрын
Recording video, making mistakes, editing, posting, commenting... MAN! It's amazing to have people like you Jeremy.
@jeremypersing4484
@jeremypersing4484 2 жыл бұрын
Thank you Rajesh, I appreciate it
@akash7065
@akash7065 2 жыл бұрын
Thanks for serving us with your time and knowledge. For real, we’re grateful 🙏
@jeremypersing4484
@jeremypersing4484 2 жыл бұрын
Thanks for watching!
@hajtooti613
@hajtooti613 2 жыл бұрын
Your videos are teaching me a lot better than the college course I'm paying a good thousand for
@jeremypersing4484
@jeremypersing4484 2 жыл бұрын
Thanks, I'm glad you're finding the videos useful
@bijooop7955
@bijooop7955 2 жыл бұрын
Awesome! This is the channel that you should turn your notification on ❤
@jeremypersing4484
@jeremypersing4484 2 жыл бұрын
Thank you bro
@muhamed1031
@muhamed1031 2 жыл бұрын
I really appreciate the time and effort you put into these videos thanks a lot and God bless
@jeremypersing4484
@jeremypersing4484 2 жыл бұрын
Thank you
@KomalParulekar
@KomalParulekar Жыл бұрын
Facing problem while triggering addnotificationresponsereceivedlistener event. My expo app terminates whenever i try to click on the notification
@agentics
@agentics Жыл бұрын
Thanks Mate, this helped a lot.. very cool project
@jeremypersing4484
@jeremypersing4484 Жыл бұрын
Appreciate it, glad I could help
@podonak8993
@podonak8993 2 жыл бұрын
Holy crap Man. You are an absolute beast.
@jeremypersing4484
@jeremypersing4484 2 жыл бұрын
Thanks
@mettymaster6963
@mettymaster6963 Жыл бұрын
Thank you for this video, it's the only one that made me possible to correctly integrate Expo push notifications. Do you happen to know if this configuration will make this work on IOS too or are there extra step required?
@jeremypersing4484
@jeremypersing4484 Жыл бұрын
You’ll probably have to set up more credentials. It’s been over a year since I’ve done this on a prod build, so I’m not sure what exactly I had to do, but this documentation will probably help docs.expo.dev/push-notifications/push-notifications-setup/
@darrachbarneveld9201
@darrachbarneveld9201 Жыл бұрын
I can't seem to get this working for my development eas apk builds. Any insight on what the differences in setup are?
@hakanaki
@hakanaki Жыл бұрын
can you do a video on Notifee ?
@realvoices2356
@realvoices2356 Жыл бұрын
thanks foryou guide, can you make this to iOS device? Thanks
@NajeebUllahKhan-ri2oq
@NajeebUllahKhan-ri2oq Жыл бұрын
My Dear Brother can you do this for NodeJS? I want to send notifications to my customers from ReactJS Dashboard to their expo (iOS and Android) apps.
@jeremypersing4484
@jeremypersing4484 Жыл бұрын
I did something similar in another video using nodejs. Just take a look at this code and it should get you started github.com/JeremyPersing/apartmentsclonechatserver/blob/main/src/notifications/index.ts
@HSinhori
@HSinhori Жыл бұрын
faz um video com a nova versão do cloud messaging
@Sara-po1jd
@Sara-po1jd Жыл бұрын
Is there any additional setup that should be done? this setup works fine in the expo go application, but when I build the application with "eas" I am not getting any notifications :(
@jeremypersing4484
@jeremypersing4484 Жыл бұрын
Not that I remember. Have you tried this out docs.expo.dev/push-notifications/faq/#notifications-work-in-development-but-not-after-building-the-app?
@sumitKumar-pf9xo
@sumitKumar-pf9xo Жыл бұрын
After eas build its not coming
@renzogbo
@renzogbo Жыл бұрын
Hi! How do you know if the user have allowed the notifications on the settings?
@jeremypersing4484
@jeremypersing4484 Жыл бұрын
You would get the permissions and then if they allow notifications you would get the push token. Here’s what I did github.com/JeremyPersing/apartmentsclone/blob/master/hooks/useNotifications.ts. Just look at the registerForPushNotificationsAsync function.
@tuo2484
@tuo2484 Жыл бұрын
Thanks you sir 🥰😍
@FaisalKhawaj-mi5wm
@FaisalKhawaj-mi5wm Жыл бұрын
I receive this error in production : is not a registered push notification recipient
@godhands6929
@godhands6929 Жыл бұрын
hi, i also received the same error, have you been able to fix it?
@soksok2392
@soksok2392 2 жыл бұрын
Thank you Sir👍
@jeremypersing4484
@jeremypersing4484 2 жыл бұрын
Thank you
@karimdakrouri3410
@karimdakrouri3410 2 жыл бұрын
Hi, should i alert the user every time they open the app about enabling push notifications?
@jeremypersing4484
@jeremypersing4484 2 жыл бұрын
Depends on the application and if notifications are a necessary part of the user experience. Also if the user deliberately turns them off and you keep reminding them to enable notifications, they will probably just delete your app (or at least I would).
@jaystance9856
@jaystance9856 Жыл бұрын
Thanks for the content, but you didn't show for ios
@hyrixlele8959
@hyrixlele8959 Жыл бұрын
Since FCM push notifications are not supported in IOS , i found out that expo push notifications are the best way to go with , but im using firebase as my backend and firebase firestore as a database, so you can say it's a serverless app ! is it possible for me to send notifications ? or a server is needed ?
@neenad3414
@neenad3414 Жыл бұрын
did you able to get done with firebase? let me know!
@hyrixlele8959
@hyrixlele8959 Жыл бұрын
@@neenad3414 no , im still searching for a solution !
@neenad3414
@neenad3414 Жыл бұрын
@@hyrixlele8959 you can do one thing like i did. What i did is i created async function for send push notifications through expo and called that function when my firestore document gets created. Let me know if this helps you!
@hyrixlele8959
@hyrixlele8959 Жыл бұрын
@@neenad3414 Can i have your discord so we can discuss this ?
@neenad3414
@neenad3414 Жыл бұрын
@@hyrixlele8959 Neenad Sahasrabuddhe#9155
@matysw
@matysw 2 жыл бұрын
comment for algorythm
@jeremypersing4484
@jeremypersing4484 2 жыл бұрын
Appreciate it!
@devsolutions-qk1bg
@devsolutions-qk1bg 11 ай бұрын
this helped me a lot but you sound too much like george W Bush jr😁
@jeremypersing4484
@jeremypersing4484 11 ай бұрын
Hahaha I haven’t heard that one before
Expo Login W/ Google for Standalone Builds - SDK 45
7:36
Jeremy
Рет қаралды 1,8 М.
Setup Push Notifications in your Expo App
19:28
Dan's React Native Lab
Рет қаралды 39 М.
Amazing remote control#devil  #lilith #funny #shorts
00:30
Devil Lilith
Рет қаралды 16 МЛН
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 148 МЛН
МЕНЯ УКУСИЛ ПАУК #shorts
00:23
Паша Осадчий
Рет қаралды 4,5 МЛН
Из какого города смотришь? 😃
00:34
МЯТНАЯ ФАНТА
Рет қаралды 2,2 МЛН
React Native Push Notifications with Expo and Edge Functions
26:48
Engage users with Firebase Cloud Messaging
25:33
Firebase
Рет қаралды 23 М.
Supabase is about to solve Flutterflow's biggest problem
7:57
John Kealy
Рет қаралды 1,9 М.
Expo Notifications with EAS | Complete Guide
51:50
Code with Beto
Рет қаралды 7 М.
Part1: Implementing Push Notifications in Expo React Native App
18:11
DHH discusses SQLite (and Stoicism)
54:00
Aaron Francis
Рет қаралды 99 М.
Amazing remote control#devil  #lilith #funny #shorts
00:30
Devil Lilith
Рет қаралды 16 МЛН