Skip to content

Commit

Permalink
Revert build tools to 33.0.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
ychescale9 committed Dec 6, 2023
1 parent 0784ef6 commit 0115ce2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/sdk-installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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 = '34.0.0';
const BUILD_TOOLS_VERSION = '33.0.2';
// SDK command-line tools 11.0
const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-10406996_latest.zip';
const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-10406996_latest.zip';
Expand Down
2 changes: 1 addition & 1 deletion src/sdk-installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '34.0.0';
const BUILD_TOOLS_VERSION = '33.0.2';
// SDK command-line tools 11.0
const CMDLINE_TOOLS_URL_MAC = 'https://dl.google.com/android/repository/commandlinetools-mac-10406996_latest.zip';
const CMDLINE_TOOLS_URL_LINUX = 'https://dl.google.com/android/repository/commandlinetools-linux-10406996_latest.zip';
Expand Down
2 changes: 1 addition & 1 deletion test-fixture/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android {
namespace = "com.example.testapp"

compileSdkVersion 34
buildToolsVersion "34.0.0"
buildToolsVersion "33.0.2"

defaultConfig {
applicationId "com.example.testapp"
Expand Down

0 comments on commit 0115ce2

Please sign in to comment.