Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,12 @@ Make sure that you enter a clear and valid reason for your app to access the cam

#### Windows

In your Package.appxmanifest file (Platforms\Windows) go to Capabilities and mark Web Camera and Microphone.
In your Package.appxmanifest file (Platforms\Windows) go to Capabilities and mark Web Camera and Microphone:

```xml
<DeviceCapability Name="webcam"/>
<DeviceCapability Name="microphone"/>
```

For more information on permissions, see the [Microsoft Docs](https://docs.microsoft.com/dotnet/maui/platform-integration/appmodel/permissions).

Expand Down