diff --git a/lib/sdk-installer.js b/lib/sdk-installer.js index db122e3a..9d14bf67 100644 --- a/lib/sdk-installer.js +++ b/lib/sdk-installer.js @@ -33,7 +33,7 @@ const core = __importStar(require("@actions/core")); const exec = __importStar(require("@actions/exec")); const io = __importStar(require("@actions/io")); const fs = __importStar(require("fs")); -const BUILD_TOOLS_VERSION = '30.0.0'; +const BUILD_TOOLS_VERSION = '30.0.2'; const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-6609375_latest.zip'; const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-6609375_latest.zip'; /** diff --git a/src/sdk-installer.ts b/src/sdk-installer.ts index 38706110..d71e5628 100644 --- a/src/sdk-installer.ts +++ b/src/sdk-installer.ts @@ -3,7 +3,7 @@ import * as exec from '@actions/exec'; import * as io from '@actions/io'; import * as fs from 'fs'; -const BUILD_TOOLS_VERSION = '30.0.0'; +const BUILD_TOOLS_VERSION = '30.0.2'; const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-6609375_latest.zip'; const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-6609375_latest.zip'; diff --git a/test-fixture/app/build.gradle b/test-fixture/app/build.gradle index c0deda44..504c36d1 100644 --- a/test-fixture/app/build.gradle +++ b/test-fixture/app/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 30 - buildToolsVersion "30.0.1" + buildToolsVersion "30.0.2" defaultConfig { applicationId "com.example.testapp"