No prompt for microphone access using Live Build on OSX Mojave

Hi all. I’m attempting to build the Processing Audio Input tutorial application with Live Build in the Projucer, and despite enabling ‘Microphone Access’ in the Xcode build settings I’m not being prompted for microphone access by OSX when I launch the application, and no audio input is registered. Any idea why this is?

I’m using OSX Mojave 10.14.3 and JUCE v5.4.4 on the ‘master’ branch.

Thanks.

I submitted a fix here.

The issue is that Projucer needs to have microphone access enabled as well in order to prompt microphone access in apps built with Live Build. To do this, add the following lines to JUCE/extras/Projucer/Builds/Info-App.plist

<key>NSCameraUsageDescription</key>
<string>Projucer requires access to the Camera.</string>
<key>NSMicrophoneUsageDescription</key>
<string>Projucer requires access to the Microphone.</string>

and rebuild Projucer.