summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Wright <michaelwr@google.com>2021-10-28 16:45:21 +0100
committerMichael Wright <michaelwr@google.com>2021-11-05 19:39:17 +0000
commit08dd45a3b5b20759c5bff79a697a6d11bf973d23 (patch)
tree909cc279b3337c5bb60cc25101141ea0655465df
parentb7de10739fca89220da03307a3228b32284bd65c (diff)
S V2 is now 32
Bug: 204295952 Test: N/A Change-Id: Ib13f30c27cf79c2903e05d3c2cd27d79c4a28668 Merged-In: Ib13f30c27cf79c2903e05d3c2cd27d79c4a28668
-rw-r--r--android/api_levels.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/android/api_levels.go b/android/api_levels.go
index 93583bc07..a337371ae 100644
--- a/android/api_levels.go
+++ b/android/api_levels.go
@@ -290,6 +290,7 @@ func getFinalCodenamesMap(config Config) map[string]int {
"Q": 29,
"R": 30,
"S": 31,
+ "S-V2": 32,
}
// TODO: Differentiate "current" and "future".
@@ -333,6 +334,7 @@ func getApiLevelsMap(config Config) map[string]int {
"Q": 29,
"R": 30,
"S": 31,
+ "S-V2": 32,
}
for i, codename := range config.PlatformVersionActiveCodenames() {
apiLevelsMap[codename] = previewAPILevelBase + i