Update SDK version check due to I4716e71d72
Bug: 15603590 Change-Id: Ia2ac28a2dbf3e07678661d59e0aa6b4e6a536a02
This commit is contained in:
parent
278b9071ab
commit
4f28b22766
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ public final class 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;
|
||||||
|
|
Loading…
Reference in a new issue