Quick little PowerShell script to add the ADB tools to the path
## Edit to match the path where you have Android SDK tools installed | |
if ($env:Path -NotMatch "Android\\android-sdk\\platform") | |
{ | |
write-host "Adding Android SDK Platform tools to path" | |
$env:Path += ";${env:ProgramFiles(x86)}\Android\android-sdk\platform-tools" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment