Hi @Akshay Jayam,
Thanks for reaching out.
MAUI doesn’t provide a built-in, cross-platform API to open specific system settings like Bluetooth. So in MAUI, this feature needs to be re-implemented using platform-specific logic rather than a shared API. The only built-in option (AppInfo.Current.ShowSettingsUI()) opens your app’s settings page, not the device’s Bluetooth settings.
To get the same behavior you had in Xamarin, you’ll need to use platform-specific code in MAUI:
Android: You can open the Bluetooth settings using an Intent (Settings.ActionBluetoothSettings) from the Android platform folder.
iOS: Apple does not allow apps to deep-link directly to the Bluetooth settings page. The best you can do is open the app’s settings and guide the user to enable Bluetooth manually.
Hope this helps! If my answer was helpful - kindly follow the instructions here so others with the same problem can benefit as well.