mirror of
https://github.com/android-actions/setup-android.git
synced 2026-09-25 06:08:35 +00:00
Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
28da3a5ceb | ||
|
|
035682743a | ||
|
|
be39fa8340 | ||
|
|
1f87d5b2a1 |
@@ -12,7 +12,7 @@ jobs:
|
||||
- uses: actions/checkout@v7
|
||||
|
||||
- name: Setup node 24
|
||||
uses: actions/setup-node@v6
|
||||
uses: actions/setup-node@v7
|
||||
with:
|
||||
node-version: 24
|
||||
|
||||
@@ -29,7 +29,7 @@ jobs:
|
||||
- uses: actions/checkout@v7
|
||||
|
||||
- name: Setup node 24
|
||||
uses: actions/setup-node@v6
|
||||
uses: actions/setup-node@v7
|
||||
with:
|
||||
node-version: 24
|
||||
|
||||
@@ -43,7 +43,7 @@ jobs:
|
||||
- uses: actions/checkout@v7
|
||||
|
||||
- name: Setup node 24
|
||||
uses: actions/setup-node@v6
|
||||
uses: actions/setup-node@v7
|
||||
with:
|
||||
node-version: 24
|
||||
|
||||
@@ -66,6 +66,7 @@ jobs:
|
||||
- windows-2025
|
||||
- windows-2022
|
||||
cmdline-tools-version:
|
||||
- 15859902
|
||||
- 14742923
|
||||
- 12266719
|
||||
- 11479570
|
||||
@@ -79,7 +80,7 @@ jobs:
|
||||
- uses: actions/checkout@v7
|
||||
|
||||
- name: Setup node 24
|
||||
uses: actions/setup-node@v6
|
||||
uses: actions/setup-node@v7
|
||||
with:
|
||||
node-version: 24
|
||||
|
||||
@@ -108,7 +109,7 @@ jobs:
|
||||
- uses: actions/checkout@v7
|
||||
|
||||
- name: Setup node 24
|
||||
uses: actions/setup-node@v6
|
||||
uses: actions/setup-node@v7
|
||||
with:
|
||||
node-version: 24
|
||||
|
||||
|
||||
@@ -85,7 +85,7 @@ and `uiautomatorviewer` were dropped without one.
|
||||
Command line tools are versioned using two variables - short and long.
|
||||
Long one is the build number, used in the zip URL, short one is the human friendly version name.
|
||||
|
||||
By default, setup-android installs version 14742923 (short version 20.0).
|
||||
By default, setup-android installs version 15859902 (short version 22.0).
|
||||
|
||||
To install a different version, call setup-android with desired long version as the input parameter `cmdline-tools-version`:
|
||||
```yaml
|
||||
@@ -98,6 +98,7 @@ To install a different version, call setup-android with desired long version as
|
||||
#### Version table
|
||||
| Short version | Long version |
|
||||
|---------------| --- |
|
||||
| 22.0 | 15859902 |
|
||||
| 20.0 | 14742923 |
|
||||
| 16.0 | 12266719 |
|
||||
| 13.0 | 11479570 |
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ inputs:
|
||||
cmdline-tools-version:
|
||||
description: 'cmdline-tools-version. See https://developer.android.com/studio#command-line-tools-only'
|
||||
required: false
|
||||
default: '14742923'
|
||||
default: '15859902'
|
||||
|
||||
accept-android-sdk-licenses:
|
||||
description: 'Android SDK is usable only after the license agreement. Should setup-android agree to the licences, provided by "sdkmanager --licenses"'
|
||||
|
||||
Vendored
+8
-1
@@ -23152,6 +23152,8 @@ var fs4 = __toESM(require("fs"));
|
||||
var os6 = __toESM(require("os"));
|
||||
function getVersionShort(versionLong) {
|
||||
switch (versionLong) {
|
||||
case "15859902":
|
||||
return "22.0";
|
||||
case "14742923":
|
||||
return "20.0";
|
||||
case "12266719":
|
||||
@@ -23184,6 +23186,7 @@ if (VERSION_LONG.includes("/") || VERSION_LONG.includes("\\")) {
|
||||
var VERSION_SHORT = getVersionShort(VERSION_LONG);
|
||||
var COMMANDLINE_TOOLS_WIN_URL = `https://dl.google.com/android/repository/commandlinetools-win-${VERSION_LONG}_latest.zip`;
|
||||
var COMMANDLINE_TOOLS_MAC_URL = `https://dl.google.com/android/repository/commandlinetools-mac-${VERSION_LONG}_latest.zip`;
|
||||
var COMMANDLINE_TOOLS_MAC_ARM64_URL = `https://dl.google.com/android/repository/commandlinetools-mac_arm64-${VERSION_LONG}_latest.zip`;
|
||||
var COMMANDLINE_TOOLS_LIN_URL = `https://dl.google.com/android/repository/commandlinetools-linux-${VERSION_LONG}_latest.zip`;
|
||||
var ANDROID_HOME_SDK_DIR = path6.join(os6.homedir(), ".android", "sdk");
|
||||
var ANDROID_SDK_ROOT = process.env["ANDROID_SDK_ROOT"] || ANDROID_HOME_SDK_DIR;
|
||||
@@ -23218,7 +23221,11 @@ async function installSdkManager() {
|
||||
if (process.platform === "linux") {
|
||||
cmdlineToolsURL = COMMANDLINE_TOOLS_LIN_URL;
|
||||
} else if (process.platform === "darwin") {
|
||||
cmdlineToolsURL = COMMANDLINE_TOOLS_MAC_URL;
|
||||
if (Number(VERSION_LONG) >= 15859902) {
|
||||
cmdlineToolsURL = COMMANDLINE_TOOLS_MAC_ARM64_URL;
|
||||
} else {
|
||||
cmdlineToolsURL = COMMANDLINE_TOOLS_MAC_URL;
|
||||
}
|
||||
} else if (process.platform === "win32") {
|
||||
cmdlineToolsURL = COMMANDLINE_TOOLS_WIN_URL;
|
||||
} else {
|
||||
|
||||
+8
-1
@@ -7,6 +7,8 @@ import * as os from 'os'
|
||||
|
||||
function getVersionShort(versionLong: string): string {
|
||||
switch (versionLong) {
|
||||
case '15859902':
|
||||
return '22.0'
|
||||
case '14742923':
|
||||
return '20.0'
|
||||
case '12266719':
|
||||
@@ -41,6 +43,7 @@ const VERSION_SHORT = getVersionShort(VERSION_LONG)
|
||||
|
||||
const COMMANDLINE_TOOLS_WIN_URL = `https://dl.google.com/android/repository/commandlinetools-win-${VERSION_LONG}_latest.zip`
|
||||
const COMMANDLINE_TOOLS_MAC_URL = `https://dl.google.com/android/repository/commandlinetools-mac-${VERSION_LONG}_latest.zip`
|
||||
const COMMANDLINE_TOOLS_MAC_ARM64_URL = `https://dl.google.com/android/repository/commandlinetools-mac_arm64-${VERSION_LONG}_latest.zip`
|
||||
const COMMANDLINE_TOOLS_LIN_URL = `https://dl.google.com/android/repository/commandlinetools-linux-${VERSION_LONG}_latest.zip`
|
||||
|
||||
const ANDROID_HOME_SDK_DIR = path.join(os.homedir(), '.android', 'sdk')
|
||||
@@ -105,7 +108,11 @@ async function installSdkManager(): Promise<string> {
|
||||
if (process.platform === 'linux') {
|
||||
cmdlineToolsURL = COMMANDLINE_TOOLS_LIN_URL
|
||||
} else if (process.platform === 'darwin') {
|
||||
cmdlineToolsURL = COMMANDLINE_TOOLS_MAC_URL
|
||||
if (Number(VERSION_LONG) >= 15859902) {
|
||||
cmdlineToolsURL = COMMANDLINE_TOOLS_MAC_ARM64_URL
|
||||
} else {
|
||||
cmdlineToolsURL = COMMANDLINE_TOOLS_MAC_URL
|
||||
}
|
||||
} else if (process.platform === 'win32') {
|
||||
cmdlineToolsURL = COMMANDLINE_TOOLS_WIN_URL
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user