blob: c2ee2524c5e8b93b9c01f9dd9818714aa0703a67 [file] [log] [blame]
Adam Lesinski6f6ceb72014-11-14 14:48:12 -08001/*
2 * Copyright (C) 2015 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 AAPT_SDK_CONSTANTS_H
18#define AAPT_SDK_CONSTANTS_H
19
Adam Lesinskifb6312f2016-06-28 14:40:32 -070020#include <utility>
21
Adam Lesinskid5083f62017-01-16 15:07:21 -080022#include "androidfw/StringPiece.h"
23
Adam Lesinskice5e56e2016-10-21 17:56:45 -070024#include "Resource.h"
25
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080026namespace aapt {
27
Adam Lesinskic8f71aa2017-02-08 07:03:50 -080028enum : int {
Adam Lesinskicacb28f2016-10-19 12:18:14 -070029 SDK_CUPCAKE = 3,
30 SDK_DONUT = 4,
31 SDK_ECLAIR = 5,
32 SDK_ECLAIR_0_1 = 6,
33 SDK_ECLAIR_MR1 = 7,
34 SDK_FROYO = 8,
35 SDK_GINGERBREAD = 9,
36 SDK_GINGERBREAD_MR1 = 10,
37 SDK_HONEYCOMB = 11,
38 SDK_HONEYCOMB_MR1 = 12,
39 SDK_HONEYCOMB_MR2 = 13,
40 SDK_ICE_CREAM_SANDWICH = 14,
41 SDK_ICE_CREAM_SANDWICH_MR1 = 15,
42 SDK_JELLY_BEAN = 16,
43 SDK_JELLY_BEAN_MR1 = 17,
44 SDK_JELLY_BEAN_MR2 = 18,
45 SDK_KITKAT = 19,
46 SDK_KITKAT_WATCH = 20,
47 SDK_LOLLIPOP = 21,
48 SDK_LOLLIPOP_MR1 = 22,
49 SDK_MARSHMALLOW = 23,
Zak Cohen1a6acdb2016-12-12 15:21:21 -080050 SDK_NOUGAT = 24,
51 SDK_NOUGAT_MR1 = 25,
Adam Lesinskic8f71aa2017-02-08 07:03:50 -080052 SDK_O = 26, // STOPSHIP Replace with real version
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080053};
54
Adam Lesinskice5e56e2016-10-21 17:56:45 -070055size_t FindAttributeSdkLevel(const ResourceId& id);
56size_t FindAttributeSdkLevel(const ResourceName& name);
Adam Lesinskid5083f62017-01-16 15:07:21 -080057std::pair<android::StringPiece, int> GetDevelopmentSdkCodeNameAndVersion();
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080058
Adam Lesinskicacb28f2016-10-19 12:18:14 -070059} // namespace aapt
Adam Lesinski6f6ceb72014-11-14 14:48:12 -080060
Adam Lesinskicacb28f2016-10-19 12:18:14 -070061#endif // AAPT_SDK_CONSTANTS_H