I am having trouble using ispeech.org TTS engine with my Android app.
The app crashes on:
java.lang.NoClassDefFoundError: org.ispeech.iSpeechFramework
at org.ispeech.SpeechSynthesis.showProcessingDialog(SpeechSynthesis.java:276)
at org.ispeech.SpeechSynthesis.speak(SpeechSynthesis.java:352)
I have added this line to AndroidManifest.xml:
<activity android:name="org.ispeech.iSpeechFramework" android:configChanges="orientation|keyboard" android:theme="@android:style/Theme.Translucent"/>
However IntelliJ complains that
"'org.ispeech.iSpeechFrameworkd' is not assignable to 'app.android.Activity'"
Can anyone help me understand what I am doing wrong?