Merge "Add status bar time for 5.1" into lmp-mr1-dev

This commit is contained in:
Deepanshu Gupta
2015-03-02 19:26:14 +00:00
committed by Android (Google) Code Review

View File

@@ -73,7 +73,7 @@ public class Config {
public static String getTime(int platformVersion) { public static String getTime(int platformVersion) {
if (platformVersion == 0) { if (platformVersion == 0) {
return "5:00"; return "5:10";
} }
if (platformVersion < GINGERBREAD) { if (platformVersion < GINGERBREAD) {
return "2:20"; return "2:20";
@@ -87,9 +87,12 @@ public class Config {
if (platformVersion < KITKAT) { if (platformVersion < KITKAT) {
return "4:30"; return "4:30";
} }
if (platformVersion <= KITKAT_WATCH) { if (platformVersion < LOLLIPOP) {
return "4:40"; return "4:40";
} }
if (platformVersion < LOLLIPOP_MR1) {
return "5:00";
}
// Should never happen. // Should never happen.
return "4:04"; return "4:04";
} }