Skip to content

Commit a917366

Browse files
authored
Build tools 37.0.0 (#475)
1 parent ae2c4d7 commit a917366

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
* Update SDK build tools to `37.0.0`. - [#475](https://github.com/ReactiveCircus/android-emulator-runner/pull/475)
6+
57
## v2.37.0
68

79
* 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)

lib/sdk-installer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const exec = __importStar(require("@actions/exec"));
3939
const io = __importStar(require("@actions/io"));
4040
const tc = __importStar(require("@actions/tool-cache"));
4141
const fs = __importStar(require("fs"));
42-
const BUILD_TOOLS_VERSION = '36.0.0';
42+
const BUILD_TOOLS_VERSION = '37.0.0';
4343
// SDK command-line tools 20.0
4444
const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-14742923_latest.zip';
4545
const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-14742923_latest.zip';

src/sdk-installer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as io from '@actions/io';
44
import * as tc from '@actions/tool-cache';
55
import * as fs from 'fs';
66

7-
const BUILD_TOOLS_VERSION = '36.0.0';
7+
const BUILD_TOOLS_VERSION = '37.0.0';
88
// SDK command-line tools 20.0
99
const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-14742923_latest.zip';
1010
const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-14742923_latest.zip';

test-fixture/app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ plugins {
44

55
android {
66
namespace = "com.example.testapp"
7-
compileSdk = 36
8-
buildToolsVersion = "36.0.0"
7+
compileSdk = 37
8+
buildToolsVersion = "37.0.0"
99

1010
defaultConfig {
1111
applicationId = "com.example.testapp"
1212
minSdk = 23
13-
targetSdk = 36
13+
targetSdk = 37
1414
versionCode = 1
1515
versionName = "1.0"
1616

0 commit comments

Comments
 (0)