I know that the settings can be changed programmatically as follows:
Settings.Secure.putInt(getContentResolver(),Settings.Secure.ADB_ENABLED, 1);
But in Developer Options
there are some settings that are not provided in either Settings.Secure
, Settings.Global
, or Settings.System
.
For example, the Simulate color space
parameter that was added from Api 21

Are there other ways to access it?
source share