I have an application that scans for Bluetooth device nearby and displays them on the app. This works fine when the phone is in normal mode, but when using android management API policy on the same phone, it does not show any result as before
Unable to understand what is causing this?
This is the policy that is being applied
policy_json = '''
{
"applications": [
{
"packageName": "com.example.ble",
"installType": "FORCE_INSTALLED"
}
],
"debuggingFeaturesAllowed": true
}
'''
Thanks