Search code examples
androidmicrophone

Android internal microphone release issues


I have a very interesting problem.

I was under the impression that when my app uses the microphone, and the Android system process (like incoming or outgoing call) needs the microphone, my app releases it without any consideration.

But i guess that is not the issue anymore, since i have received few complains that when the app is being used and there is incoming call, the other side on the call, can not hear them.

Is there any way to assure that whenever system process requests the microphone, to be released?


Solution

  • Currently, there is no way to check whether another app requests the microphone. However, there are some workarounds:

    • If you record sound in an Activity, simply release the microphone in onPause(), so that the foreground app can use it. This won't work if you record audio in a background service.
    • Pause the recording when there is an incoming call. To detect incoming (and outgoing) calls, take a look at this excellent answer. When the call ends, resume the recording.
    • A dirty hack: If detecting incoming calls isn't enough, you could loop through all running apps and see if they have the microphone permission. As soon as an app with microphone permission is running, pause the recording. Getting all running apps can be difficult. For more infos, look here, here, here and here for checking the permissions.