Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ad71b965 authored by Romain Hunault's avatar Romain Hunault
Browse files

Change display version value

parent 1294bc45
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ public class UpdatesActivity extends UpdatesListActivity {

        TextView headerTitle = (TextView) findViewById(R.id.header_title);
        headerTitle.setText(getString(R.string.header_title_text,
                BuildInfoUtils.getBuildVersion()));
                    BuildInfoUtils.getDisplayVersion());

        updateLastCheckedString();

+4 −0
Original line number Diff line number Diff line
@@ -29,4 +29,8 @@ public final class BuildInfoUtils {
    public static String getBuildVersion() {
        return SystemProperties.get(Constants.PROP_BUILD_VERSION);
    }

    public static String getDisplayVersion() {
        return SystemProperties.get(Constants.PROP_BUILD_DISPLAY_VERSION);
    }
}
+1 −0
Original line number Diff line number Diff line
@@ -33,6 +33,7 @@ public final class Constants {

    public static final String PROP_BUILD_DATE = "ro.build.date.utc";
    public static final String PROP_BUILD_VERSION = "ro.cm.build.version";
    public static final String PROP_BUILD_DISPLAY_VERSION = "ro.cm.display.version";
    public static final String PROP_BUILD_VERSION_INCREMENTAL = "ro.build.version.incremental";
    public static final String PROP_DEVICE = "ro.cm.device";
    public static final String PROP_NEXT_DEVICE = "ro.updater.next_device";