Questions tagged [expo-notifications]

114 questions
0
votes
0 answers

expo: How to subscribe to Firebase channel/topic using expo-notification

I want to implement firebase push notification with expo using expo-notification. the problem is when I send the a push notification to a topic no notification came. is there's any way to subscribe to a topic using this expo-notification?
0
votes
0 answers

Push notifications not working in Expo Go

I don't receive push notifications when testing the app in Expo Go with physical devices. However it seems to work fine in a standalone (builded) app.
0
votes
0 answers

How to change expo-notifications icon because it's not working using plugins configuration in app.json as recommend the documentation

This is not working "plugins":[   [   "expo-notifications",    {     "icon": "./assets/notification-icon.png"    }   ]  ]
0
votes
0 answers

cannot expo login Request failed with status code 403

I'm trying to do an expo login from the terminal so I can use getExpoPushTokenAsync . I've already set npm config set "strict-ssl" false -g and export NODE_TLS_REJECT_UNAUTHORIZED=0 but now it's failing with Error: Request failed with status code…
0
votes
0 answers

Listen Notifications in React Native

Sorry if this question even has an answer, i'm new here. I want to listen all the notifications that a device receive. I'm using Expo to build my app, but reading the doc about the expo-notification don't be clear to me if the tool has capacity to…
0
votes
0 answers

How do I send push notifications with expo and react native?

I am writing a simple app, where I need to send push notifications. For instance, a user liked a post -> send a push notification; or a user commented under a post -> send a push notification; or a user sent you a message -> send a push…
0
votes
1 answer

How to add notification bar control on React Native Expo

I'm making an audio player app but I want to add the functionality of a notification bar control where you control the music like this: Any help would be greatly appreciated.
Pirogrammer
  • 150
  • 3
  • 18
0
votes
1 answer

How to Use exponent-server-sdk-php to send push notifications to an app

Please I need help in sending push notifications to anybody that installs my app on their android phone to get a push notification each time I create a post using PHP as the backend. Here is my code for that: $response = array(); require_once…
Tosin Seyi
  • 15
  • 5
0
votes
1 answer

Expo Notifications: Stopped being able to receive notifications on iOS

I am implementing expo-notifications into my react native app. Notifications have been working fine up until a couple weeks ago and I can't figure out what the issue is. Everything on Android is working properly, but on iOS I'm not able to receive…
pbrune
  • 348
  • 1
  • 17
0
votes
1 answer

How to display an image in a expo local notification

To give more clarity on the issue, i am developing this for IOS using expo notifications and expo sdk44 in my current project. I have a couple of questions which i failed to find the answer to in their official documentation. Is it possible to…
newplayer
  • 25
  • 7
0
votes
0 answers

Unable to get expo push notification token after generated release build in Android

I integrated expo notification for Push notification. My project is Expo bare flow let token; const { status: existingStatus } = await Notifications.getPermissionsAsync(); let finalStatus = existingStatus; if (existingStatus…
0
votes
1 answer

Should I treat an Expo Push Notifications Token as a sensitive information? If so, how do I send notifications in a secure way?

In my app, after a user sends a message to someone, another function is triggered to notify the receiver. For that, the sender has to have the receiver's push token (front end). My question is: Is that safe? Is there a better approach? I'm using…
0
votes
2 answers

Creating SNS Endpoint Device Token Error [Expo]

While creating application endpoint, device token is not accepted. Exo returns token like that ExponentPushToken[91hX**********] in the below the form it is written : Maximum 400 characters. Only hexadecimal characters ara allowed I convert to…
0
votes
1 answer

Expo Local Notifications Not Scheduling

I have been working on scheduling local notifications (not push notifications) using expo. I am on SDK 44 and am using expo-notifications library. I have been digging through the expo documentation and trying their examples, but the notifications…
Roche
  • 155
  • 1
  • 12
0
votes
1 answer

How can i redirect to other screens from App.js?

I am trying to redirect to another screen when a notification is received in App.js. I am using useNavigation() but it is not working. Is there a way to redirect to another screen or use the notifications in another way? export default function…