am 4f28b227: Update SDK version check due to I4716e71d72
* commit '4f28b22766e06b8c62636527393945114ea78002': Update SDK version check due to I4716e71d72main
commit
ad4f964a70
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue