react-native-tts
react-native-tts copied to clipboard
Not working in android but in IOS its working
Not working in android but in IOS its working
also running into this - weirdly the import is null.
import Tts from "react-native-tts"
For anyone running into this issue, it's probably caused by the linking not being able to find your MainApplication.java. Open that up and add:
import net.no_mad.tts.TextToSpeechPackage;
and
new TextToSpeechPackage(),
Should work after this.
Your settings.gradle and build.gradle will probably already be right. Refer to the example project if you need further info.