ak1394 / react-native-tts

React Native Text-To-Speech library for Android and iOS
612 stars 156 forks source link

Tts Tts.addEventListener('tts-progress', this._onProgress); is not working on android #97

Open laxusgooee opened 5 years ago

laxusgooee commented 5 years ago
componentDidMount() {
    ...

    Tts.addEventListener('tts-start', this._onStart);
    Tts.addEventListener('tts-progress', this._onProgress);
    Tts.addEventListener('tts-finish', this._onFinish);
    Tts.addEventListener('tts-cancel', this._onCancel);
  }

_onProgress = (event) => {  console.log(event) }

on ios this._onProgress works, but its not called on android

I tested on a device

mrTuomoK commented 5 years ago

Yeah, noticed this too. That's because the progress hasn't been implemented on Android-side at all (checked the code...)