am 4f28b227: Update SDK version check due to I4716e71d72

* commit '4f28b22766e06b8c62636527393945114ea78002':
  Update SDK version check due to I4716e71d72
main
Tadashi G. Takaoka 2014-06-13 19:20:40 +00:00 committed by Android Git Automerger
commit ad4f964a70
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ public final class KeyboardTheme implements Comparable<KeyboardTheme> {
private static int getSdkVersion() { private static int getSdkVersion() {
final int sdkVersion = Build.VERSION.SDK_INT; final int sdkVersion = Build.VERSION.SDK_INT;
// TODO: Consider to remove this check once the *next* version becomes available. // TODO: Consider to remove this check once the *next* version becomes available.
if (sdkVersion == VERSION_CODES.KITKAT && Build.VERSION.CODENAME.startsWith("L")) { if (sdkVersion > VERSION_CODES.KITKAT) {
return VERSION_CODES.CUR_DEVELOPMENT; return VERSION_CODES.CUR_DEVELOPMENT;
} }
return sdkVersion; return sdkVersion;