Prompt for microphone permission when recording video in new camera.

Previously, the new camera would silently record video without audio
when microphone permission was missing. Now it shows the same rationale
dialog and permanent denial flow as the old camera.
This commit is contained in:
Greyson Parrelli
2026-02-09 12:24:45 -05:00
parent cbcbe3f564
commit 8d44640377
4 changed files with 45 additions and 1 deletions

View File

@@ -147,6 +147,9 @@ fun MainScreen(
is StandardCameraHudEvents.MediaSelectionClick -> {
// Doesn't need to be handled
}
is StandardCameraHudEvents.AudioPermissionRequired -> {
// Doesn't need to be handled
}
}
}
)