forked from oppia/oppia-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.bzl
22 lines (18 loc) · 792 Bytes
/
version.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
Defines the latest version of the Oppia Android app.
Note that version codes must be ordered such that dev > alpha, and kitkat < lollipop+. This will
ensure that the Play Store provides users with the correct version of the app in situations where
their device qualifies for more than one choice.
More unstable flavors of the app are higher version codes since they represent "newer" versions of
the app (that are potentially not broadly released yet).
"""
MAJOR_VERSION = 0
MINOR_VERSION = 13
# TODO(#4419): Remove the Kenya-specific alpha version code.
OPPIA_DEV_VERSION_CODE = 166
OPPIA_DEV_KITKAT_VERSION_CODE = 165
OPPIA_ALPHA_KENYA_VERSION_CODE = 164
OPPIA_ALPHA_VERSION_CODE = 163
OPPIA_ALPHA_KITKAT_VERSION_CODE = 162
OPPIA_BETA_VERSION_CODE = 161
OPPIA_GA_VERSION_CODE = 160