Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 7 http://developer.android.com/reference/android/os/Build.VERSION_CODES.html | |
| 8 """ | |
| 9 | |
| 10 JELLY_BEAN = 16 | |
| 11 JELLY_BEAN_MR1 = 17 | |
| 12 JELLY_BEAN_MR2 = 18 | |
| 13 KITKAT = 19 | |
| 14 KITKAT_WATCH = 20 | |
| 15 LOLLIPOP = 21 | |
| 16 LOLLIPOP_MR1 = 22 | |
| 17 MARSHMALLOW = 23 | |
| 18 | |
| OLD | NEW |