Skip to content

Commit f9c2835

Browse files
authored
SDK command-line tools 11.0. (#356)
* SDK command-line tools 11.0. * Temporarily disable API 16 test.
1 parent 1036f55 commit f9c2835

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [macos-latest, ubuntu-latest]
22-
api-level: [16, 23, 29]
22+
api-level: [23, 29]
2323
target: [default, google_apis]
2424
arch: [x86]
2525
exclude:

lib/sdk-installer.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ const exec = __importStar(require("@actions/exec"));
3838
const io = __importStar(require("@actions/io"));
3939
const tc = __importStar(require("@actions/tool-cache"));
4040
const fs = __importStar(require("fs"));
41-
const BUILD_TOOLS_VERSION = '33.0.2';
42-
// SDK command-line tools 9.0
43-
const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-9477386_latest.zip';
44-
const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-9477386_latest.zip';
41+
const BUILD_TOOLS_VERSION = '34.0.0';
42+
// SDK command-line tools 11.0
43+
const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-10406996_latest.zip';
44+
const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-10406996_latest.zip';
4545
/**
4646
* Installs & updates the Android SDK for the macOS platform, including SDK platform for the chosen API level, latest build tools, platform tools, Android Emulator,
4747
* and the system image for the chosen API level, CPU arch, and target.

src/sdk-installer.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ 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 = '33.0.2';
8-
// SDK command-line tools 9.0
9-
const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-9477386_latest.zip';
10-
const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-9477386_latest.zip';
7+
const BUILD_TOOLS_VERSION = '34.0.0';
8+
// SDK command-line tools 11.0
9+
const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-10406996_latest.zip';
10+
const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-10406996_latest.zip';
1111

1212
/**
1313
* Installs & updates the Android SDK for the macOS platform, including SDK platform for the chosen API level, latest build tools, platform tools, Android Emulator,

0 commit comments

Comments
 (0)