Questions tagged [expo-notifications]

114 questions
2
votes
2 answers

EXPO. Notifications do not popup

"expo": "^39.0.0" / Library - expo-notifications. Since moving to the new API, I have been facing various problems. I fixed problems with the icon, with receiving a notification in apk, with handlers, and now I could not find an answer to this…
2
votes
0 answers

expo-notifications scheduleNotification is not working as expected in devices

My app is of expo bare workflow. Using latest expo & expo notifications. "expo": "^39.0.0", "expo-notifications": "~0.7.2", Problem Im im trying to schedule a repeat notification on everyday morning 9AM & night 9PM everyday. One Everytime use user…
ltsharma
  • 83
  • 9
2
votes
1 answer

react native - custom expo notifications schedule

I am working on a react-native based mobile app using expo. in the app the user can set schedules for medication reminders, for that I am using expo-notifications to show those reminders. expo-notifications provides some functions to schedule…
anwar
  • 103
  • 1
  • 10
2
votes
1 answer

react native cron job lib

I am working on a react-native based mobile app using expo. in the app the user can set schedules for medication reminders, for that I am using expo-notifications to show those reminders. expo-notifications provides some functions to schedule…
anwar
  • 103
  • 1
  • 10
2
votes
1 answer

Got "x.509 certificate signed by unknown authority" when the server tried to send Expo notifications

I got "x.509 certificate signed by unknown authority" error message when I tried to send notifications to the Expo Push Notification server. My server written in Golang stores expo push tokens. Then, it loads those tokens and build expo.PushMessage…
byron1st
  • 969
  • 1
  • 13
  • 35
1
vote
1 answer

How to make the title and body come from the backend server for push notification and not hard coded in react native?

Hope everyone is well. I am building a react native app using expo. So I reached the point where i need to implement push notification for my app. So i went to expo documentation on this link and i made it work, so i started receiving push…
1
vote
1 answer

Expo notifications arriving with too much delay on .apk build

I am developing my expo app which uses expo notifications. For now, I am working on the notifications for the android version. I set up the Firebase Cloud Messaging credentials, but, when I make the .apk file, the notifications arrive with a huge…
user21871191
1
vote
0 answers

What would be a way to handle mass amounts of push notifications?

I am currently working on a expo app where users can set notification times for varying things within the app. The notifications can vary between once a day to once a week or not at all. There can also be multiple notifications at the same time for…
1
vote
2 answers

'No experienceId or projectId found' when attempting to use getExpoPushTokenAsync() on iOS

I'm creating an expo react native app that needs to be able to send push notifications to users. Since this app will be running on both iOS and Android, we're planning on using Expo's Push Notifications service. However, whenever I attempt to use…
1
vote
0 answers

Expo notification opens Expo GO

I set up my expo notification app with the HTTP/2 API. It works fine but after I build the app, push a notification and click on it on the device, it opens Expo GO instead of my installed App. I'm testing on IOS with a TestFlight submitted app. I…
1
vote
1 answer

Expo notifications can't call `getExpoPushTokenAsync()`

Am currently trying to setup notifications on my managed expo project Expo version 47.0.0 Expo notifications version 0.17.0 Device: Samsung Galaxy s10 Android version 12 I am currently just trying to get the basic setup itself working and retrieve…
1
vote
0 answers

Expo-Notification not showing notification when in foreground

I have setup the Expo-Notifications, and I'm using local notifications as reminders, all works well until I need a notification to show while I'm inside the app. The notification always shows while the app is in background but I can't get it to work…
1
vote
0 answers

How To Handle Multiple Actions in Expo React Native Local Notification

it could be a silly question, I don't have much experience in Expo React Native, I want to create multiple actions with a single notification, if the user clicks on the title user should redirect to a single profile page and if the user clicks on…
1
vote
0 answers

Expo notification icon not showing

I have built an app using React Native (Reminder App) and i need it to show notification. That is working perfectly but when i receive a notification the icon shows as a small purple square. Below is an image of similar output found on google …
D99
  • 84
  • 6
1
vote
1 answer

How to bring a react native(expo) app to the foreground when user recieves a notification

I have set up expo notification wherein my app listens to incoming notifications and can execute tasks in the background but my question is how do I bring the app to the foreground upon receiving a notification without the user pressing on the…