1 /*
2  * Copyright (C) 2014 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.inputmethod.compat;
18 
19 import android.os.Build;
20 
21 public final class BuildCompatUtils {
BuildCompatUtils()22     private BuildCompatUtils() {
23         // This utility class is not publicly instantiable.
24     }
25 
26     private static final boolean IS_RELEASE_BUILD = Build.VERSION.CODENAME.equals("REL");
27 
28     /**
29      * The "effective" API version.
30      * {@link android.os.Build.VERSION#SDK_INT} if the platform is a release build.
31      * {@link android.os.Build.VERSION#SDK_INT} plus 1 if the platform is a development build.
32      */
33     public static final int EFFECTIVE_SDK_INT = IS_RELEASE_BUILD
34             ? Build.VERSION.SDK_INT
35             : Build.VERSION.SDK_INT + 1;
36 
37     /**
38      * API version for L-release.
39      */
40     // TODO: Substitute this constant reference with Build.VERSION_CODES.L* once the *next* version
41     // becomes available.
42     public static final int VERSION_CODES_LXX = 21;
43 }
44