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

Commit 546f8442 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

Change-Id: I8c0ffadb2c7b5c679eafd0e2221afcb9802261c0
parents 2482a900 9e401dfc
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