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

Commit 36e3fa55 authored by Deepanshu Gupta's avatar Deepanshu Gupta
Browse files

Update status bar time.

Copy the value from the demo mode (commit 33b60bb4)

Change-Id: I4c215676e7ae26a68aa370e99db005226d8a05d9
parent 671b7f9b
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -74,8 +74,8 @@ public class Config {
    }

    public static String getTime(int platformVersion) {
        if (isGreaterOrEqual(platformVersion, LOLLIPOP_MR1)) {
            return "5:10";
        if (isGreaterOrEqual(platformVersion, MNC)) {
            return "6:00";
        }
        if (platformVersion < GINGERBREAD) {
            return "2:20";
@@ -95,6 +95,9 @@ public class Config {
        if (platformVersion < LOLLIPOP_MR1) {
            return "5:00";
        }
        if (platformVersion < MNC) {
            return "5:10";
        }
        // Should never happen.
        return "4:04";
    }