diff options
author | sarbyn <sarbyn@gmail.com> | 2013-11-30 10:39:08 +0100 |
---|---|---|
committer | Steve Kondik <shade@chemlab.org> | 2015-11-07 13:33:42 -0800 |
commit | da6e5f9100aca5c698e1a3f56a182bbd5d5fd699 (patch) | |
tree | e8b04c28ad63c785a498719aab2ba76034f5235e /res | |
parent | 0183673aefd2303adbc4af8ae3e180fcadd7e039 (diff) | |
download | packages_apps_Settings-da6e5f9100aca5c698e1a3f56a182bbd5d5fd699.zip packages_apps_Settings-da6e5f9100aca5c698e1a3f56a182bbd5d5fd699.tar.gz packages_apps_Settings-da6e5f9100aca5c698e1a3f56a182bbd5d5fd699.tar.bz2 |
Settings: Port "Development shortcut" (1/3)
New setting under "Debug settings" that enables the development shortcut
Change-Id: I9a43e611911f2e278605715f714860ad11236fd9
Modify the Development shortcut help text
Change-Id: I9a43e611911f2e278605715f714860ad11236fd9
Diffstat (limited to 'res')
-rw-r--r-- | res/values/cm_strings.xml | 4 | ||||
-rw-r--r-- | res/xml/development_prefs.xml | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/res/values/cm_strings.xml b/res/values/cm_strings.xml index 4f3f820..cb40b7d 100644 --- a/res/values/cm_strings.xml +++ b/res/values/cm_strings.xml @@ -28,6 +28,10 @@ <!-- Launch Dev Tools --> <string name="development_tools_title">Development tools</string> + <!-- Development shortcut --> + <string name="development_shortcut_title">Development shortcut</string> + <string name="development_shortcut_summary">Enable application management shortcuts in notification area and recent apps list</string> + <!-- Setting checkbox title for root access --> <string name="root_access">Root access</string> <string name="root_access_warning_title">Allow root access?</string> diff --git a/res/xml/development_prefs.xml b/res/xml/development_prefs.xml index 78cbb21..aab8da5 100644 --- a/res/xml/development_prefs.xml +++ b/res/xml/development_prefs.xml @@ -140,6 +140,11 @@ android:title="@string/mock_location_app" /> <SwitchPreference + android:key="development_shortcut" + android:title="@string/development_shortcut_title" + android:summary="@string/development_shortcut_summary" /> + + <SwitchPreference android:key="debug_view_attributes" android:title="@string/debug_view_attributes" /> |