Build a app with simple speech option, but does not work after build

Hello I am currently trying to make my app work with speech, which works perfectly fine before building, whether it’s through expo scan or usb debugging.

However once I try to build it and download the APK to my phone, it has no speech sounds.

Currently I’m just trying to do a simple speech with push notification.

my relevant code looks like the following

this.listener = Notifications.addListener(this.handleNotification);

handleNotification = (notification) => {
Speech.speak(notification.data.notifmessage,
{language: ‘en-EN’, pitch: 1, rate: 1.0,})
};

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.