From 3b9031814584eb2e06f3c6339fb95c9cb96014a9 Mon Sep 17 00:00:00 2001 From: Alan Hughes Date: Thu, 18 Jun 2026 11:24:20 +0100 Subject: [PATCH 1/2] Bump Android to SDK 37 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0f98033..1c97f0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,8 @@ ENV DEBIAN_FRONTEND=noninteractive # set default build arguments # https://developer.android.com/studio#command-tools ARG SDK_VERSION=commandlinetools-linux-11076708_latest.zip -ARG ANDROID_BUILD_VERSION=36 -ARG ANDROID_TOOLS_VERSION=36.0.0 +ARG ANDROID_BUILD_VERSION=37 +ARG ANDROID_TOOLS_VERSION=37.0.0 ARG NDK_VERSION=27.1.12297006 ARG NODE_VERSION=22.14 ARG WATCHMAN_VERSION=4.9.0 From fdf6533dc49c1635d311847af7cb66ca411c09ee Mon Sep 17 00:00:00 2001 From: Alan Hughes Date: Thu, 18 Jun 2026 11:51:10 +0100 Subject: [PATCH 2/2] update version string --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1c97f0d..ce97d70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,9 @@ ENV DEBIAN_FRONTEND=noninteractive # set default build arguments # https://developer.android.com/studio#command-tools ARG SDK_VERSION=commandlinetools-linux-11076708_latest.zip -ARG ANDROID_BUILD_VERSION=37 +# Android 17 (API 37) ships as a versioned platform package "platforms;android-37.0" +# (the new . scheme, cf. android-36.1); plain "android-37" does not exist. +ARG ANDROID_BUILD_VERSION=37.0 ARG ANDROID_TOOLS_VERSION=37.0.0 ARG NDK_VERSION=27.1.12297006 ARG NODE_VERSION=22.14