How to add voice notification in react native expo app - react-native

I am creating an app which is a reminder app. It will send a notification that can speak the task which the user has assigned. I have created an entire app but am unable to add a voice notification feature in the app using react native expo. can anyone have an idea to do so?
thanks in advance

Related

Get all phone notifications using React Native

I'm trying to build a notification history-type app, and I need to find a way to intercept all push notifications a phone gets and log them in the app. How could I do such a thing? Thank you!

React Native Remote Notification without Expo

I am working on building a mobile application. I used react native on the front end. In my application, I wanna send a notification to users. I used native modules so that I had to eject expo. What is the best way to send remote notification without expo?
This library is the most used one for react native push notifications: React Native Push Notifications
This can help you with firebase push notifications: Firebase cloud messaging

How to know which app is getting used in background in your react native app?

I wanted to build an app which can send notifications to the user if he uses a particular app for more than 15 minutes...for this I need to trace which app the user is using even when my react native app is not being used(i.e. it is present in the background). Is there any react native library which can help me to know the app which the user is using in the present?
There's no way to do this. Your app would have to be running in the background at all times, and even then the OS would have to support such a feature.

Can we use React Native Firebase Push Notification on local (offline)

i just write a local push notification for android and ios use React Native Firebase. I wonder can i use RNFirebase Push Notification on local ( offline ). Can you guys have a solution for that?. Thank you!

Send push notifications using FCM and React Native (Expo) app

I am building a React Native(Expo) app that can send notifications to another app(not built with react-native). I have the FCM token(device-token) of the target app. How can I send notifications to that app using firebase cloud messaging(FCM)?
The target app is NOT built using react-native and has everything handled for the incoming notification. I just need to send the notification to the target app. Thank you in advance.