I'm running iOS 7 on a jailbroken iPhone, i'm attempting to create a console based application that can record audio. Trouble is that the microphone doesn't seem to be authorised (presumably because the user can't allow access).
From research it says that I can override this by setting the following in an entitlements file:
<key>com.apple.private.tcc.allow</key>
<array>
<string>kTCCServiceMicrophone</string>
</array>
Does anyone have an example of the a fully populated entitlements file? I've been trying to do it and then using ldid to 'assign' them to the console app.
At the moment i'm at a loss and the application just creates an audio file with no content.