Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 50227e68 authored by Tao Bao's avatar Tao Bao Committed by android-build-merger
Browse files

releasetools: Add a hard-coded codename-API mapping. am: 9e401dfc

am: 546f8442

Change-Id: Iee149fbe9cdcdca1f240db3c59d31bfb8e184fde
parents 81a01b36 546f8442
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -992,6 +992,10 @@ def GetCodenameToApiLevelMap(input_tf_zip):
    codename = codename.strip()
    if codename:
      result[codename] = api_level

  # Work around APKs that still target 'Q' instead of API 29 (b/132882632).
  result['Q'] = 29

  return result