summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/DeviceInfoSettings.java
diff options
context:
space:
mode:
authorChris Soyars <ctso@ctso.me>2010-12-19 17:26:58 -0500
committerMichael Bestas <mikeioannina@gmail.com>2015-10-24 02:43:38 -0700
commit092128464f1e1b5476641e47ae5793fef8a17205 (patch)
tree86d34174c416c3f1ff29e60b48563f5ecbe813d5 /src/com/android/settings/DeviceInfoSettings.java
parent89c8688d6d87bff08bb5b655ecdc5822c7d24f5f (diff)
downloadpackages_apps_Settings-092128464f1e1b5476641e47ae5793fef8a17205.zip
packages_apps_Settings-092128464f1e1b5476641e47ae5793fef8a17205.tar.gz
packages_apps_Settings-092128464f1e1b5476641e47ae5793fef8a17205.tar.bz2
Add Modver to Settings.
Change-Id: I596064a80210517ff0dae30401f71b52adabd614 Rename modversion Change-Id: I6557d5aa68a3ad00166cdd2b8951f425ad7800df DeviceInfoSettings: Use ro.cm.display.version instead of ro.cm.version Follows the same logic as ro.build.display.id/ro.build.id: engineering, debug and unsigned builds will have no distinction, user and signed builds will show a simplified version Change-Id: I713ccb2445ea2e333e831129ef7733fd518282eb settings: This is CyanogenMod! Change-Id: If9f14d6579b18c4ae049d35e312dd2d98746aced Change-Id: I6557d5aa68a3ad00166cdd2b8951f425ad7800df
Diffstat (limited to 'src/com/android/settings/DeviceInfoSettings.java')
-rw-r--r--src/com/android/settings/DeviceInfoSettings.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/android/settings/DeviceInfoSettings.java b/src/com/android/settings/DeviceInfoSettings.java
index 3a0e061..3d82c62 100644
--- a/src/com/android/settings/DeviceInfoSettings.java
+++ b/src/com/android/settings/DeviceInfoSettings.java
@@ -81,6 +81,7 @@ public class DeviceInfoSettings extends SettingsPreferenceFragment implements In
private static final String PROPERTY_EQUIPMENT_ID = "ro.ril.fccid";
private static final String KEY_DEVICE_FEEDBACK = "device_feedback";
private static final String KEY_SAFETY_LEGAL = "safetylegal";
+ private static final String KEY_MOD_VERSION = "mod_version";
static final int TAPS_TO_BE_A_DEVELOPER = 7;
@@ -128,6 +129,8 @@ public class DeviceInfoSettings extends SettingsPreferenceFragment implements In
setStringSummary(KEY_BUILD_NUMBER, Build.DISPLAY);
findPreference(KEY_BUILD_NUMBER).setEnabled(true);
findPreference(KEY_KERNEL_VERSION).setSummary(getFormattedKernelVersion());
+ setValueSummary(KEY_MOD_VERSION, "ro.cm.display.version");
+ findPreference(KEY_MOD_VERSION).setEnabled(true);
if (!SELinux.isSELinuxEnabled()) {
String status = getResources().getString(R.string.selinux_status_disabled);