In the app I\'m developing on Android, I keep getting a Fatal Signal 11 error.
I think it\'s something to do with the way that I\'m accessing the memory but I can\'t
I had the same problem with an instance of android.media.MediaRecorder.
The code accessed #getMaxAmplitude() after #reset() and #release() on the MediaRecorder instance had been called.
#getMaxAmplitude()
#reset()
#release()