Last active
July 19, 2023 13:30
-
-
Save AArnott/81af4a49e35b52607343 to your computer and use it in GitHub Desktop.
PowerShell script for automating the installation of Android SDKs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$AndroidToolPath = "${env:ProgramFiles(x86)}\Android\android-sdk\tools\android.bat" | |
if (!(Test-Path $AndroidToolPath)) { | |
$AndroidToolPath = "$env:localappdata\Android\android-sdk\tools\android.bat" | |
} elseif (!(Test-Path $AndroidToolPath)) { | |
Write-Error "Unable to find Android SDK Manager tools." | |
return | |
} | |
Function Get-AndroidSDKs() { | |
$output = & $AndroidToolPath list sdk --all | |
$sdks = $output |% { | |
if ($_ -match '(?<index>\d+)- (?<sdk>.+), revision (?<revision>[\d\.]+)') { | |
$sdk = New-Object PSObject | |
Add-Member -InputObject $sdk -MemberType NoteProperty -Name Index -Value $Matches.index | |
Add-Member -InputObject $sdk -MemberType NoteProperty -Name Name -Value $Matches.sdk | |
Add-Member -InputObject $sdk -MemberType NoteProperty -Name Revision -Value $Matches.revision | |
$sdk | |
} | |
} | |
$sdks | |
} | |
Function Install-AndroidSDK() { | |
[CmdletBinding()] | |
Param( | |
[Parameter(Mandatory=$true, Position=0)] | |
[PSObject[]]$sdks | |
) | |
$sdkIndexes = $sdks |% { $_.Index } | |
$sdkIndexArgument = [string]::Join(',', $sdkIndexes) | |
Echo 'y' | & $AndroidToolPath update sdk -u -a -t $sdkIndexArgument | |
} | |
# Example usage: | |
# $sdks = Get-AndroidSDKs |? { $_.name -like 'sdk platform*API 10*' -or $_.name -like 'google apis*api 10' } | |
# Install-AndroidSDK -sdks $sdks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment