I have a critical requirement for my app where I need to silently process PUSH notifications in both Android and IOS.
I've already made a prototype that receives the notifications, but I didn't find a way to avoid the prompt and the sound.
Is that even possible using Expo? should I use pure react-native instead?
I needed to send a "silent" notification to update the badge count on our iOS and Android apps. The solution I found is to send a notification throw the "https://expo.dev/notifications" and did not provide "title" and "message" content, only provided the "badge count" info.
Works like a charm for us.