Skip to content

Commit 2499f69

Browse files
authored
Revert "utils: Update default Android SDKs in build.ps1 (#79944)"
This reverts commit c4a472e.
1 parent 275a679 commit 2499f69

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

utils/build.ps1

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,9 @@ $msbuild = "$VSInstallRoot\MSBuild\Current\Bin\$BuildArchName\MSBuild.exe"
210210
$UnixToolsBinDir = "$env:SystemDrive\Program Files\Git\usr\bin"
211211

212212
if ($Android -and ($AndroidSDKs.Length -eq 0)) {
213-
# By default, build and test the arm64 Android SDK. That choice might change
214-
# once we can run executable tests in CI.
215-
$AndroidSDKs = @("aarch64")
213+
# Enable all android SDKs by default.
214+
$AndroidSDKs = @("aarch64","armv7","i686","x86_64")
216215
}
217-
218216
# Work around limitations of cmd passing in array arguments via powershell.exe -File
219217
if ($AndroidSDKs.Length -eq 1) { $AndroidSDKs = $AndroidSDKs[0].Split(",") }
220218
if ($WindowsSDKs.Length -eq 1) { $WindowsSDKs = $WindowsSDKs[0].Split(",") }

0 commit comments

Comments
 (0)