How can I debug an Android device that is set to installtype: KIOSK
using the Android Management API? I have set debuggingFeaturesAllowed
to true
but adb devices
does not even show the device when attached via USB cable. Is there a way to get a console output from such a device?
I'm currently using the following policy on the device:
{
"name": "enterprises/LC0999999/policies/policy1",
"version": "13",
"applications": [
{
"packageName": "com.package.name",
"installType": "KIOSK",
"defaultPermissionPolicy": "GRANT"
}
],
"keyguardDisabled": true,
"debuggingFeaturesAllowed": true
}