diff --git a/CHANGELOG.md b/CHANGELOG.md index eabb3e21..8c6f9ec4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +## v2.38.0 + +* Update SDK build tools to `37.0.0`. - [#475](https://github.com/ReactiveCircus/android-emulator-runner/pull/475) + ## v2.37.0 * Update SDK build tools to `36.0.0`, update SDK command-line tools to `20.0`. - [#467](https://github.com/ReactiveCircus/android-emulator-runner/pull/467) diff --git a/README.md b/README.md index 2ce290b9..16718a7a 100644 --- a/README.md +++ b/README.md @@ -272,5 +272,6 @@ These are some of the open-source projects using (or used) **Android Emulator Ru - [home-assistant/android](https://github.com/home-assistant/android/blob/master/.github/workflows/pr.yml) - [composablehorizons/compose-unstyled](https://github.com/composablehorizons/compose-unstyled/tree/main/.github/workflows) - [f3d-app/f3d-android](https://github.com/f3d-app/f3d-android/blob/master/.github/workflows/ci.yml) +- [freeorion/freeorion](https://github.com/freeorion/freeorion/blob/master/.github/workflows/_build-android.yml) If you are using **Android Emulator Runner** and want your project included in the list, please feel free to open a pull request. diff --git a/lib/sdk-installer.js b/lib/sdk-installer.js index 8ecefb79..0e4f33eb 100644 --- a/lib/sdk-installer.js +++ b/lib/sdk-installer.js @@ -39,7 +39,7 @@ const exec = __importStar(require("@actions/exec")); const io = __importStar(require("@actions/io")); const tc = __importStar(require("@actions/tool-cache")); const fs = __importStar(require("fs")); -const BUILD_TOOLS_VERSION = '36.0.0'; +const BUILD_TOOLS_VERSION = '37.0.0'; // SDK command-line tools 20.0 const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-14742923_latest.zip'; const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-14742923_latest.zip'; diff --git a/src/sdk-installer.ts b/src/sdk-installer.ts index 8f311ce6..6dfef13d 100644 --- a/src/sdk-installer.ts +++ b/src/sdk-installer.ts @@ -4,7 +4,7 @@ import * as io from '@actions/io'; import * as tc from '@actions/tool-cache'; import * as fs from 'fs'; -const BUILD_TOOLS_VERSION = '36.0.0'; +const BUILD_TOOLS_VERSION = '37.0.0'; // SDK command-line tools 20.0 const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-14742923_latest.zip'; const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-14742923_latest.zip'; diff --git a/test-fixture/app/build.gradle.kts b/test-fixture/app/build.gradle.kts index bcb05e3f..0af471a2 100644 --- a/test-fixture/app/build.gradle.kts +++ b/test-fixture/app/build.gradle.kts @@ -4,13 +4,13 @@ plugins { android { namespace = "com.example.testapp" - compileSdk = 36 - buildToolsVersion = "36.0.0" + compileSdk = 37 + buildToolsVersion = "37.0.0" defaultConfig { applicationId = "com.example.testapp" minSdk = 23 - targetSdk = 36 + targetSdk = 37 versionCode = 1 versionName = "1.0"