Reputation: 347
![enter image description here][1]I am working an Android application where I am using both a text to speech conversion and speech recognition elements. However, when I give a repeat instruction or press a repeat button in order to start tts to speak , it throws these warnings:
**speak failed: not bound to TTS engine**
**stop failed: not bound to TTS engine**
What do I need to do for this to work?
Upvotes: 0
Views: 258
Reputation: 18151
You have to make sure that you call speak
only after onInit
is called.
Upvotes: 2