diff options
author | Dan Albert <danalbert@google.com> | 2017-08-29 11:50:34 -0700 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2017-08-29 11:50:34 -0700 |
commit | e3e4fc869369a97438df44f17f862ab0ec06cc7c (patch) | |
tree | d468e94ee9928bf19f73545a1eca1b0bb49ca0af /android/api_levels.go | |
parent | ef88ae2369aa9a097941bf1bff7823589ffc819f (diff) |
Add a name to API level map for O.
O is released, so we don't get this knowledge from the development
codenames list any more.
Test: make ndk # with an API using introduced=O
Bug: None
Change-Id: I21104c5d97c89f2f85157ac7d73de8cd5a478571
Diffstat (limited to 'android/api_levels.go')
-rw-r--r-- | android/api_levels.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/android/api_levels.go b/android/api_levels.go index 370d553b7..2c4ae1a07 100644 --- a/android/api_levels.go +++ b/android/api_levels.go @@ -67,6 +67,7 @@ func (a *apiLevelsSingleton) GenerateBuildActions(ctx blueprint.SingletonContext "M": 23, "N": 24, "N-MR1": 25, + "O": 26, } for i, codename := range ctx.Config().(Config).PlatformVersionCombinedCodenames() { apiLevelsMap[codename] = baseApiLevel + i |