Is there any way to reduce the lowest and highest screen brightness settings by editing the build.prop file in Android? If yes, then how?
Is there any way to reduce the lowest and highest screen brightness settings by editing the build.prop file in Android? If yes, then how?
Change/set the following parameters in the build.prop to set the brightness.
ro.lcd_min_brightness=50
ro.lcd_brightness=255
The above is an example. The first set the minimum.
The range is from 1 to 255. 1 being the minimum level that can be set while 255 is the maximum.
Q & A