1 /*
2  * Copyright (C) 2016 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 package com.android.compatibility.common.util;
17 
18 public class VersionCodes {
19     public static final int CUR_DEVELOPMENT = 10000;
20     public static final int BASE = 1;
21     public static final int BASE_1_1 = 2;
22     public static final int CUPCAKE = 3;
23     public static final int DONUT = 4;
24     public static final int ECLAIR = 5;
25     public static final int ECLAIR_0_1 = 6;
26     public static final int ECLAIR_MR1 = 7;
27     public static final int FROYO = 8;
28     public static final int GINGERBREAD = 9;
29     public static final int GINGERBREAD_MR1 = 10;
30     public static final int HONEYCOMB = 11;
31     public static final int HONEYCOMB_MR1 = 12;
32     public static final int HONEYCOMB_MR2 = 13;
33     public static final int ICE_CREAM_SANDWICH = 14;
34     public static final int ICE_CREAM_SANDWICH_MR1 = 15;
35     public static final int JELLY_BEAN = 16;
36     public static final int JELLY_BEAN_MR1 = 17;
37     public static final int JELLY_BEAN_MR2 = 18;
38     public static final int KITKAT = 19;
39     public static final int KITKAT_WATCH = 20;
40     public static final int LOLLIPOP = 21;
41     public static final int LOLLIPOP_MR1 = 22;
42     public static final int M = 23;
43     public static final int N = CUR_DEVELOPMENT;
44 }
45