[Solved] Can not perform text to speech conversion in Android
the problem turned out to be the max char size that can be passed to text to speech engine is about 4000 if your string contains more than 4000 characters it will not work // this will not work tts.speak(text, TextToSpeech.QUEUE_ADD, null); in order to get it working add an setOnUtteranceProgressListener and loop trough your … Read more