am bf815f49: am 7b4caab1: am 07d453fa: Merge "Add status bar time for 5.1" into lmp-mr1-dev

* commit 'bf815f495270b466e53bec20772b41ff4397ac83':
  Add status bar time for 5.1
This commit is contained in:
Deepanshu Gupta
2015-03-02 19:53:32 +00:00
committed by Android Git Automerger

View File

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