-
Re: Watch audio recording - no microphone permissions
QuinceyMorris Oct 25, 2019 7:19 AM (in response to pitr12)What is the value of recordingSession.recordPermission? The documentation for requestRecordPermission says that it doesn't prompt if it doesn't need to, so maybe it doesn't need to. (Maybe it never needed to, if permission was granted on the iPhone. I don't know if the watch and phone permissions are coordinated like that, but maybe they are.)
-
Re: Watch audio recording - no microphone permissions
pitr12 Oct 25, 2019 7:28 AM (in response to QuinceyMorris)It is: '
AVAudioSessionRecordPermissionUndetermined
' that means that it should ask for permission.Also as a workaround i tried to ask for permissions on iphone (directly in iphone app) that works and phone asks for permissions. However even if I grant them, watch still returns
AVAudioSessionRecordPermissionUndetermined
-
Re: Watch audio recording - no microphone permissions
QuinceyMorris Oct 25, 2019 8:44 PM (in response to pitr12)Sounds like you have exactly what you need for a bug report.
It's possible that it's the documentation is wrong, rather than the APIs. Most of those authorization APIs expect your code to ask for authorization explicitly, if the current state is "not determined".
Either way, a bug report should be your next step.
-
-