Android - Not enough memory or resources

I am facing an Issue while using FMOD in Android Studio as a NDK project. I am using FMOD to create different voice effects, which is done in a loop. If I am to initiate the instance multiple times, I get the (Not enough memory or resources.) error and the voice operation stops. I have called System->close() and System->release() when the loop operation finishes but to no avail.

I’m confused as to why you are initializing and trying to release the FMOD system so many times? Usually this is done once when the application is started and once when it is closed.

You can see an example of recording a microphone in the record project of the Core API examples.