Questions tagged [expo-notifications]

114 questions
1
vote
1 answer

Remove push notifications token from Expo server

In order to use expo-notifications, I use this approach: -show an onboarding screen where user can accept to receive the notifications -if the user accepted to receive the notifications, I will call the getExpoPushTokenAsync() to get the expo push…
1
vote
1 answer

Expo Push Notifications on Android

I have Expo Push Notifications working in the Expo Go app as well as iOS builds. However, it does not work on Android and I get this message when running getExpoPushTokenAsync(): Error: Encountered an exception while calling native method: Exception…
1
vote
1 answer

Expo Notifications repeats after a specified date

Im trying to schedule a daily notification with expo notifications. I need to fire this notification from a specified date in the future. So it will be for example: schedule the notification on 20 days in the future and from there fire it daily…
1
vote
0 answers

Cannot retrieve ExpoPushToken on IOS

ExpoSDK Version - 42 Bare workflow EAS version - 0.39.0 I have an react-native expo app build with eas build --profile preview --platform all, and on IOS i cannot seem to retrieve the ExpoPushToken. On Android it works just fine. I tried to fix the…
gpavlov
  • 77
  • 2
  • 6
1
vote
0 answers

Expo Notification Error in ios [Error: Another async call to this method is in progress. Await the first Promise.]

Please provide the following: SDK Version: "^42.0.0", Platforms(Android/iOS/web/all): iOS Add the appropriate "Tag" based on what Expo library you have a question on. Hello, [expo-notifications] Error encountered while updating server…
1
vote
2 answers

java.lang.IllegalStateException: Couldn't find implementation for Permissions interface

My expo react-native application is working perfectly fine locally, in dev mode (Expo Go). But it crashes mercilessly in production when downloaded from Google Play Store and upon installation. Using logcat, the error message…
TheSoul
  • 4,906
  • 13
  • 44
  • 74
1
vote
1 answer

Expo cancel or delete a scheduled notification from server

I need to cancel a scheduled notification sent from my backend server with the expo-server-sdk-node, because it’s a reminder notification about a scheduled appointment that can be canceled by the appointment’s service provider, but the…
1
vote
0 answers

Stopwatch in notification body with expo framework

I'm currently working on an app in react native using the expo framework. I'm trying to send a notification from the client that contains a stopwatch in the notification body. I'm looking to do something like this: stopwatch notification My problem…
1
vote
0 answers

Can I modify expo push notification title/body before showing the notification?

I'm using expo notification service. I would like to send keys from backend, e.g. { title: "TITLE_KEY", body: "BODY_KEY" } then translate it when it comes on the mobile side (based on the key), before showing it, so user would not see the key on…
1
vote
0 answers

Audio equalizer for audio notification in app - react native iOS

In light of my bachelor project i am coding an application where it is optimally possible to alter the notification sounds played in the app. In that regard i was wondering if there are any equalizer plug-ins/modules available for react native that…
kib
  • 77
  • 5
1
vote
0 answers

Expo React Sticky Notification for Player

I want to add sticky notification for my android audio player and handle the player via app notification but I don't know how I can do this I tried expo official notification documents but failed please help me in this case. useEffect(() => { …
Junaid
  • 21
  • 2
1
vote
0 answers

React-native fetch data periodically and schedule local notifications

I need to set notifications daily multiple times. The timings data (which is variable) is being fetched by an API. For this I probably need a background task that will periodically fetch the data for the week/day. That task should obviously run even…
1
vote
0 answers

Expo Multiple Local Notifications Not Triggering On Time

Expo multiple local notifications aren't triggering on time. I am receiving only first notification on time while the others at times trigger a bit late or simultaneously. Few times they do get trigger on time but why I am facing such inconsistency…
1
vote
1 answer

Get the status of the notification permission and programmatically turn on the notification by the settings screen of the app

So I have a settings screen that has a switch on it that can toggle if the notification is ON/OFF. I can access the status of the notification but what I want to do is if I toggle the switch from OFF -> ON I want it to programmatically turn ON the…
nani10
  • 301
  • 4
  • 9
1
vote
0 answers

Notification Icon not appearing on React-native expo sdk 38 project

I'm having a serious issue using Expo Notifications on SDK 38.0.0. My notification icon does not appear on Android either IOS like this: https://i.stack.imgur.com/jKhcg.jpg. When I remove the flag: "useNextNotificationsApi": true from app.json, my…