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
17package com.android.inputmethod.compat;
18
19import android.os.Build;
20
21public final class 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