How to disable HISE exported APP from requesting microphone permission in MAC system?
-
How to disable HISE exported APP from requesting microphone permission in MAC system?
I made a simple APP on MAC, which does not need to use the microphone, but when I open this APP, the system will prompt it to apply for microphone permission before opening it. I hope it can be opened directly without applying for permission -
@CatABC Check in the jucer file, under
Hardened Runtime Options
, if Audio Input is disabled as it should. And you can verify this in the XCode project as well. -
@ustk wow,thanks very much
-
@ustk Does this allow audio input in standalone mode?
-
@Chazrox this allows the binary to ask the OS to get the permission to access its audio input. However, Hise doesn't have input support by default, and enabling it requires a significant amount of tweaking in the source code.
-
@ustk Cool! Just knowing that im gonna have to look into it.
Thanks.