blob: 04fbbe1f1069de6ba2705b16a242be999f19ad76 [file] [log] [blame]
Adam Lesinskidcdfe9f2014-11-06 12:54:36 -08001/*
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#ifndef H_AAPT_SDK_CONSTANTS
18#define H_AAPT_SDK_CONSTANTS
19
20enum {
21 SDK_CUPCAKE = 3,
22 SDK_DONUT = 4,
23 SDK_ECLAIR = 5,
24 SDK_ECLAIR_0_1 = 6,
25 SDK_ECLAIR_MR1 = 7,
26 SDK_FROYO = 8,
27 SDK_GINGERBREAD = 9,
28 SDK_GINGERBREAD_MR1 = 10,
29 SDK_HONEYCOMB = 11,
30 SDK_HONEYCOMB_MR1 = 12,
31 SDK_HONEYCOMB_MR2 = 13,
32 SDK_ICE_CREAM_SANDWICH = 14,
33 SDK_ICE_CREAM_SANDWICH_MR1 = 15,
34 SDK_JELLY_BEAN = 16,
35 SDK_JELLY_BEAN_MR1 = 17,
36 SDK_JELLY_BEAN_MR2 = 18,
37 SDK_KITKAT = 19,
38 SDK_KITKAT_WATCH = 20,
39 SDK_LOLLIPOP = 21,
Adam Lesinski28994d82015-01-13 13:42:41 -080040 SDK_LOLLIPOP_MR1 = 22,
Adam Lesinski2738c962015-05-14 14:25:36 -070041 SDK_MNC = 23,
Zak Cohen1a6acdb2016-12-12 15:21:21 -080042 SDK_NOUGAT = 24,
43 SDK_NOUGAT_MR1 = 25,
Jeff Sharkey7beabc22017-07-19 13:57:35 -060044 SDK_O = 26,
Michael Wrighteec01ac2017-08-23 13:49:14 -070045 SDK_O_MR1 = 27,
Wale Ogunwale3da5f3b2018-04-11 15:12:31 -070046 SDK_P = 28,
Ian Pedowitz1912a572019-05-12 19:44:42 +000047 SDK_Q = 29,
Svet Ganov38cd2212020-04-15 15:10:14 -070048 SDK_R = 30,
Adam Lesinskidcdfe9f2014-11-06 12:54:36 -080049};
50
51#endif // H_AAPT_SDK_CONSTANTS