Тёмный
No video :(

Push Notifications - Scheduled, Repeat, and Instantly 

The Whiz
Подписаться 668
Просмотров 9 тыс.
50% 1

Hello! Welcome to this video. In this video, you will learn how to add push notifications to your React Native app. This includes importing libraries, getting permissions, setting the standards of push notifications, sending automatic push notifications, sending repeated push notifications, and scheduling push notifications.
Sorry for the long video, hope it was helpful! Code link: drive.google.c...
Notification Documentation: docs.expo.dev/...
Times:
0:00 - Introduction / Importing Libraries
2:50 - Get Permissions
10:30 - Set Push Notification "Standards"
15:00 - Sending Notifications: Instant, Scheduled, Repeated
If you learned from this video, give this video a thumbs up and subscribe to this channel! To stay updated on all our future videos, click the notification bell!
App Development: • App Development
Don't forget to comment down below on what you want to see next (or if you have any questions)!

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

 

16 авг 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 39   
@mathunya
@mathunya Год назад
After watching a number of expo notifications tutorial and not understanding i finally settled here, great tutorial, you just made everything so simple for me🔥🔥🔥🔥🔥
@iamdanquah
@iamdanquah 2 года назад
One of the most comprehensive tutorials ever... You just earned a subscription 🔥🔥
@tj9960
@tj9960 Год назад
Thank you so much for helping me out , expecting more videos
@flavioeduardodiasdasilva3703
very good.... helped me a lot.... thanks
@patrickdeporre7688
@patrickdeporre7688 Год назад
great tutorial. thanks - I subscribed
@yourjhay
@yourjhay 2 года назад
awesome
@MuhammadIrshad-lv2ly
@MuhammadIrshad-lv2ly 4 месяца назад
HI Thanks for the video i am getting this error when i am scheduling notification for 8am everyday Failed to schedule the notification. Trigger of type: calendar is not supported on Android. on iphone its works well but on andrdiod getting this error
@yamzrob7459
@yamzrob7459 Год назад
how can i push notifications for multiple different times of the day?
@alexandrewilk2000
@alexandrewilk2000 2 года назад
thank you great video! love the way your editor looks what are you using btw ?
@the_whiz
@the_whiz 2 года назад
atom! it's amazing :D
@lrajoo11
@lrajoo11 Год назад
This was such a wonderful tutorial! Thanks for this. Do we need to specifically turn off notifications for web since it's not supported? Or will the notifications just not run
@the_whiz
@the_whiz Год назад
Notifications should be turned on, but if you're testing via web, I think the notifications would come on the phone. I have not tested it but smth for you to explore!
@gtasa0629
@gtasa0629 Год назад
Please put more react native videos... Please Please Please
@vishnups5435
@vishnups5435 Год назад
madm ,how about react native cli ?
@rajeshwaribarman6435
@rajeshwaribarman6435 Год назад
I have a requiremnt to send push notifications on android phone from a react native application. The expo notification is working fine in local but not standalone application. do you have any recommendation for that ? how to use expo notification on standalone app
@reactnative7468
@reactnative7468 Год назад
Mam, I have implemented schedule Notifications by following your Code. I want to schedule notification at a specific time every day i.e 04:00 PM every day then what should I do?
@user-rp6id8jb2f
@user-rp6id8jb2f Год назад
Hi, in the expo docs there is a section called ocnfiguratiion than for android use fcm and apple apn, I am confused. I have set up notifications like code shown in this video and it works on expo go app, however if i want to deploy the application to the stores, will all my users receive the push notifications or do i need to setup fcm and apn ?
@LoganoutGm
@LoganoutGm 2 года назад
When a notification is in the queue, is it not possible to overwrite it? Let's say that the user as soon as he enters the application, a 1 day notification is programmed. If he doesn't log into the app within 1 day, he will receive the notification. But if he enters this range, the notification will only be sent after 1 day of the last time he entered the app.
@the_whiz
@the_whiz 2 года назад
you can clear current notifications and reset it. I haven't looked much into overwriting notifications in the queue, so feel free to look into the expo guide: docs.expo.dev/versions/latest/sdk/notifications/
@thomasb4118
@thomasb4118 2 года назад
Solid video. With this video you showed how to send a notification for the current user. Do you have a link/resource for configuring the notifications to send to OTHER users? Not just one person. e.g. When X happens, Y users receive a notification.
@the_whiz
@the_whiz 2 года назад
chatkitty.com/blog/building-a-chat-app-with-react-native-and-expo-part-3#sending-push-notifications-using-a-chat-function Let me know if this helps!
@noniez2980
@noniez2980 2 года назад
Does anyone know how to schedule like a calendar or Alarm app ? If i want it to send a notification at X year X month X day X hour X minute, how can i do it? please help.
@the_whiz
@the_whiz 2 года назад
yeah, sure! It is explained in the documentation(docs.expo.dev/versions/latest/sdk/notifications/), but here is the code for reference: import * as Notifications from 'expo-notifications'; const trigger = new Date(Date.now() + 60 * 60 * 1000); trigger.setMinutes(0); trigger.setSeconds(0); Notifications.scheduleNotificationAsync({ content: { title: 'Happy new hour!', }, trigger, });
@christinajrgensen6706
@christinajrgensen6706 Год назад
Thanks girl! Is this working in prod on both IOS and Android?
@the_whiz
@the_whiz Год назад
yes, react native is for both :)
@shedrachjonah4177
@shedrachjonah4177 Год назад
Hello! mine can't work i'm using an ios would love for you to reach out to me.
@the_whiz
@the_whiz Год назад
Have you copied my code? If so, are push notifications enabled on your device?
@How2Forex
@How2Forex 2 года назад
sadly, the link is "No preview available " cant see the code
@the_whiz
@the_whiz 2 года назад
I think the file was too big... I copied the contents into a txt file which can be viewable here: drive.google.com/drive/folders/12vD5mG1vi7Vnfy-Fvc4Ftfx9PjWD-42g?usp=sharing Thanks for letting me know, I updated the link in the description as well!
@mohdamankhan6557
@mohdamankhan6557 2 года назад
can i shedule more than 1content notification with differnt times
@the_whiz
@the_whiz 2 года назад
yes! just use the command twice
@axadexe
@axadexe 2 года назад
Can any tell me how can i pass props to Title and description "urgent"
@the_whiz
@the_whiz 2 года назад
I described this in the video. If you need a text version of what I said, feel free to look at the official documentation: docs.expo.dev/versions/latest/sdk/notifications/
@Gangbuster74
@Gangbuster74 Год назад
but how to made it work on prod app in stand alone app
@the_whiz
@the_whiz Год назад
this should work on prod!
@junaidanwar9960
@junaidanwar9960 2 года назад
hello there, I changed the sound and the icon but it's not working can u make a video on customizing the notification? thanks
@the_whiz
@the_whiz 2 года назад
for notification customization, expo actually has a really nice documentation for this: docs.expo.dev/versions/latest/sdk/notifications/ Scroll down to the part that says "Example app.json with config plugin"
@axadexe
@axadexe 2 года назад
.tsx extenion why
@LoganoutGm
@LoganoutGm 2 года назад
A TSX file is a TypeScript
Далее
Setup Push Notifications in your Expo App
19:28
Просмотров 25 тыс.
From React to React Native in 12 Minutes
12:33
Просмотров 11 тыс.
Hello React Native Skia
33:04
Просмотров 156 тыс.
How to Present a React Native Bottom Sheet
30:28
Просмотров 40 тыс.
React Native Local Push Notifications Tutorial
10:14
Просмотров 126 тыс.
React Native Crash Course | Build a Complete App
3:24:29
Просмотров 559 тыс.