diff --git a/docs/platform-integration/appmodel/permissions.md b/docs/platform-integration/appmodel/permissions.md index 2079bd7c9b..8dd751fe32 100644 --- a/docs/platform-integration/appmodel/permissions.md +++ b/docs/platform-integration/appmodel/permissions.md @@ -1,7 +1,7 @@ --- title: "Permissions" description: "Learn how to use the .NET MAUI Permissions class, to check and request permissions. This class is in the Microsoft.Maui.ApplicationModel namespace." -ms.date: 02/02/2023 +ms.date: 10/19/2023 no-loc: ["Microsoft.Maui", "Microsoft.Maui.ApplicationModel"] --- @@ -49,6 +49,7 @@ The following table uses ✔️ to indicate that the permission is supported and | Permission | Android | iOS | Windows | tvOS | |------------------------------------------------------------------------------------------|:-------:|:---:|:-------:|:----:| | [Battery](xref:Microsoft.Maui.ApplicationModel.Permissions.Battery) | ✔️ | ❌ | ❌ | ❌ | +| Bluetooth | ✔️ | ❌ | ❌ | ❌ | | [CalendarRead](xref:Microsoft.Maui.ApplicationModel.Permissions.CalendarRead) | ✔️ | ✔️ | ❌ | ❌ | | [CalendarWrite](xref:Microsoft.Maui.ApplicationModel.Permissions.CalendarWrite) | ✔️ | ✔️ | ❌ | ❌ | | [Camera](xref:Microsoft.Maui.ApplicationModel.Permissions.Camera) | ✔️ | ✔️ | ❌ | ❌ | diff --git a/docs/whats-new/dotnet-8.md b/docs/whats-new/dotnet-8.md index eb6ac5d165..4265a3e613 100644 --- a/docs/whats-new/dotnet-8.md +++ b/docs/whats-new/dotnet-8.md @@ -36,7 +36,8 @@ For information about what's new in .NET 8, see [What's new in .NET 8](/dotnet/c - Resizeter checks for duplicate image filenames. For more information, see [Duplicate image filename errors](~/troubleshooting.md#duplicate-image-filename-errors). - Controls that support text input gain extension methods that support hiding and showing the soft input keyboard. For more information, see [Hide and show the soft input keyboard](~/user-interface/controls/entry.md#hide-and-show-the-soft-input-keyboard). - The `x:ClassModifier` attribute can be specified on XAML classes, to control the access level for a generated class in an assembly. For more information, see [Class modifiers](~/xaml/class-modifiers.md). -- The class gains the `NearbyWifiDevices` permission, which is an Android 13 permission for accessing nearby WiFi devices. +- The class gains the `Bluetooth` permission, which is an Android 12 permission for looking for Bluetooth devices, making the current device discoverable to other Bluetooth devices, and communicating with already-paired Bluetooth devices. For more information, see [Permissions](~/platform-integration/appmodel/permissions.md). +- The class gains the `NearbyWifiDevices` permission, which is an Android 13 permission for accessing nearby WiFi devices. For more information, see [Permissions](~/platform-integration/appmodel/permissions.md). The following types or members have been deprecated: @@ -50,19 +51,6 @@ The following types or members have been removed: - The `PhoneDialer.Current` property has been removed. Use `PhoneDialer.Default` instead. - `OpenGLView` has been removed. - -