Hello,
maybe you can help me out here even though i am almost sure its a limitation of mobicontrol / device at this point.
i want to set the timeout before the display gets locked to 30 minutes and the powerbutton should only turn of the screen.
on an android+ device i found the following with watchsettings so far:
Lock Screen After Timeout:
Custom log (URI:content://settings/secure SETTING:lock_screen_lock_after_timeout VALUE:1800000)
For the powerbutton option i sadly got no result.
Using the following script on an aedo device got me no result:
writesecuresetting -sec lock_screen_lock_after_timeout 1800000
I then tried to find something with adblogs on the aedo device and found the following settings triggered:
security.screenlock.ScreenLockSettings/lock_after_timeout|1800000
security.screenlock.ScreenLockSettings/power_button_instantly_locks|false
i tried multiple combinations of the settings with writesecuresetting i.e.:
writesecuresetting -sec lock_after_timeout 1800000
writesecuresetting -sec power_button_instantly_locks false
writesecuresetting -sec lock_screen_lock_after_timeout 1800000
writesecuresetting -sec lock_screen_power_button_instantly_locks false
None of them worked.
Any Ideas would be appreciated.