Skip to content

Instantly share code, notes, and snippets.

@ChaseFlorell
Created June 9, 2016 19:41
Show Gist options
  • Save ChaseFlorell/98621551a514de2004f52386b20e5bde to your computer and use it in GitHub Desktop.
Save ChaseFlorell/98621551a514de2004f52386b20e5bde to your computer and use it in GitHub Desktop.
Install the Android NDK as part of your PowerShell build. Xamarin Android
$path ='C:\Android\android-ndk'
$ndk = 'android-ndk-r11c'
$fullPath = Join-Path $path $ndk
if(!(Test-Path $fullPath)){
New-Item $path -Force -ItemType directory
(New-Object Net.WebClient).DownloadFile("http://dl.google.com/android/repository/$ndk-windows-x86.zip", "C:\Temp\$ndk-windows-x86.zip")
(new-object -com shell.application).namespace("$path").CopyHere((new-object -com shell.application).namespace("C:\Temp\$ndk-windows-x86.zip").Items(),16)
$regPath = 'HKCU:\Software\Novell\Mono for Android'
$regKey = 'AndroidNdkDirectory'
$regValue = $fullPath
if(Test-Path $regPath){
New-Item -Path $regPath -Name $regKey -Force | Out-Null
}
Set-ItemProperty -Path $regPath -Name $regKey -Value $regValue
} else {
Write-Host 'NDK Already Exists'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment