Question
Spokentext for Android
Hello All,
I am using the below code for spokentext( converting step instructions to speech 😞
$scope.speak = function(){
var spokenText = $scope.view.wdg["label-1"].text;
var msg = new SpeechSynthesisUtterance(spokenText);
window.speechSynthesis.speak(msg);
}
But it works only on IOS, and does not work on Android. Can someone share the code for Android, please.
Avinash

