How to check if access to microphone has been granted

Is there a way to check whether the user has allowed my app to use the microphone or not?

On Android, I handle the microphone request manually from my code (using native.showPopup(“requestAppPermission”, options)), which means that I can also check the result. On iOS, this is handled in build.settings and I do not know how to check what the user chose.

Unfortunately we don’t have ability to check if permissions was granted. If the call (event) fails, it means that permission was denied.

On iOS permissions are requested first time application access mic/camera apis.

Unfortunately we don’t have ability to check if permissions was granted. If the call (event) fails, it means that permission was denied.

On iOS permissions are requested first time application access mic/camera apis.