github CommunityToolkit/Maui 6.0.0-camera
Camera v6.0.0

7 hours ago

Breaking Changes

We heard your feedback! You now have more control over which Permissions you require and when you request them.

Permissions.Camera is always required before use of the Camera.Permissions.Microphone is required if you plan to use video recording.

Developers must now manually request Permissions.Camera and/or Permissions.Microphone:

var cameraPermissionsRequest = await Permissions.RequestAsync<Permissions.Camera>();

var microphonePermissionsRequest = await Permissions.RequestAsync<Permissions.Microphone>();

What's Changed

Don't miss a new Maui release

NewReleases is sending notifications on new releases.