I have enabled developer options accidentally by clicking on Settings > About Chrome > Application Version 7 times.
I didn't find any option to disable this developer options. How to disable this?
I have enabled developer options accidentally by clicking on Settings > About Chrome > Application Version 7 times.
I didn't find any option to disable this developer options. How to disable this?
The flag to show Developer options is stored on Chrome's shared preferences under the developer
key, which can only be accessed with root access.
As shown on the source code:
DeveloperSettings.setDeveloperSettingsEnabled()
true
to ChromePreferenceKeys.SETTINGS_DEVELOPER_ENABLED
SETTINGS_DEVELOPER_ENABLED
refers to the developer
key in the shared preferencesTo reset the flag:
With root access
Users can overwrite the value on the shared preferences directly
/data/data/com.android.chrome/shared_prefs/
com.android.chrome_preferences.xml
<boolean name="developer" value="true" />
"false"
Without root access
Users can only use Android Settings' "Clear data" to reset the flag. Note that this will also reset all Chrome's settings.
Q & A