Hello, my Xamarin App (C#) had this error for almost 3 days now. When I do "speechrecognizer.StartListening()"
private void switchSearch(string searchName)
{
speechrecognizer.StopListening();
// If we are not spotting, start listening with timeout (10000 ms or 10 seconds).
if (searchName.Equals(KWSS_SEARCH5))
speechrecognizer.StartListening();
else
speechrecognizer.StartListening();
}
It crashes. I debugged it and analysed where it crashes. It crashes right here, at the "JNIEnv.CallVoidMethod "
Im clueless and I need your help. Thanks in advance , keep it up!
EDIT:
The ERROR Message itself
07-28 08:13:25.385 E/mono-rt ( 4885): =================================================================
07-28 08:13:25.385 E/mono-rt ( 4885): Got a SIGSEGV while executing native code. This usually indicates
07-28 08:13:25.385 E/mono-rt ( 4885): a fatal error in the mono runtime or one of the native libraries
07-28 08:13:25.385 E/mono-rt ( 4885): used by your application.
07-28 08:13:25.385 E/mono-rt ( 4885): =================================================================
07-28 08:13:25.385 E/mono-rt ( 4885):
07-28 08:13:25.385 F/libc ( 4885): Fatal signal 11 (SIGSEGV), code 1, fault addr 0x1c in tid 4928 (SpeechRecognize)
Last edit: Hans Jamse 2017-07-28
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, my Xamarin App (C#) had this error for almost 3 days now. When I do "speechrecognizer.StartListening()"
It crashes. I debugged it and analysed where it crashes. It crashes right here, at the "JNIEnv.CallVoidMethod "
Im clueless and I need your help. Thanks in advance , keep it up!
EDIT:
The ERROR Message itself
Last edit: Hans Jamse 2017-07-28