Toggle / change hidden options for developer options

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 Simulate color space

Are there other ways to access it?

+5
source share

Source: https://habr.com/ru/post/1244995/


All Articles