Bug 1807522 - Upgrade build-tools to 33.0.1. r=geckoview-reviewers,calu

When upgrading SDK to 33, I cannot build GeckoView on Windows workstation
during processing AIDL due to https://issuetracker.google.com/issues/236167971
that is fixed by 33.0.1.

Differential Revision: https://phabricator.services.mozilla.com/D165514
This commit is contained in:
Makoto Kato 2023-01-05 02:56:32 +00:00
parent 0800a44b72
commit 4ebfb48f7e
3 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ def android_sdk_version(geckoview_lite):
# If you think you can't handle the whole set of changes, please reach out to the Release
# Engineering team.
return namespace(
build_tools_version="33.0.0",
build_tools_version="33.0.1",
target_sdk_version="33",
min_sdk_version="16" if geckoview_lite else "21",
)

View File

@ -1,4 +1,4 @@
emulator
platform-tools
build-tools;33.0.0
build-tools;33.0.1
platforms;android-33

View File

@ -91,7 +91,7 @@ def install_android_packages(logger, sdk_path, no_prompt=False):
raise OSError("Can't find sdkmanager at %s" % sdk_manager_path)
packages = ["platform-tools",
"build-tools;33.0.0",
"build-tools;33.0.1",
"platforms;android-33",
"emulator"]