Is it possible to change the delay before launching the screen saver on Android ?
Currently I have two methods to enable or disable the KEEP_SCREEN_ON but I can not find anything to handle the sleep time :
private fun keepScreenOn() = window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON)
private fun removeScreenOn() = window.clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON)