You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TTS.speak({
text: 'Welcome to the app!',
locale: 'en-GB',
rate: 0.75
}, function () {
alert('success');
}, function (reason) {
alert(reason);
});
into my onClick() function, I get this error: Uncaught ReferenceError: TTS is not defined
I debug my application with my phone connected with usb and running cordova run android, and then using chromium's chrome://inspect to read the console errors
is this my fault? do I need to import if before using?
Edit: my phone is running Android 10
The text was updated successfully, but these errors were encountered:
If I copy this code
into my onClick() function, I get this error: Uncaught ReferenceError: TTS is not defined
I debug my application with my phone connected with usb and running
cordova run android
, and then using chromium's chrome://inspect to read the console errorsis this my fault? do I need to import if before using?
Edit: my phone is running Android 10
The text was updated successfully, but these errors were encountered: