Update status bar time.

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

Change-Id: I4c215676e7ae26a68aa370e99db005226d8a05d9
This commit is contained in:
Deepanshu Gupta
2015-07-29 17:01:33 -07:00
parent 671b7f9b99
commit 36e3fa55b6

View File

@@ -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";
}