Our app is running on a device managed by Headwind MDM, but it can no longer perform Bluetooth interactions.
In the MDM configuration, Bluetooth is set to Enabled.
Before the device was managed by Headwind MDM, our app was installed and used as a system app, and Bluetooth functionality worked as expected.
Our app needs to:
scan for Bluetooth devices,
pair with them without user interaction, and
establish a connection.
The following permissions are declared in the app:
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED" />
What changes or additional configuration are required to restore this functionality?