1# Copyright 2015 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""Android SDK version codes.
6
7http://developer.android.com/reference/android/os/Build.VERSION_CODES.html
8"""
9
10JELLY_BEAN = 16
11JELLY_BEAN_MR1 = 17
12JELLY_BEAN_MR2 = 18
13KITKAT = 19
14KITKAT_WATCH = 20
15LOLLIPOP = 21
16LOLLIPOP_MR1 = 22
17MARSHMALLOW = 23
18NOUGAT = 24
19NOUGAT_MR1 = 25
20
21