Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
149,176
Downloads of v 3.4.1.0:
6,412
Last Update:
16 May 2019
Package Maintainer(s):
Software Author(s):
- Google JetBrains
Tags:
google android studio androidstudio cross-platform admin- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Android Studio (Install)
This is not the latest version of Android Studio (Install) available.
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
149,176
Downloads of v 3.4.1.0:
6,412
Maintainer(s):
Software Author(s):
- Google JetBrains
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Android Studio (Install) 3.4.1.0
This is not the latest version of Android Studio (Install) available.
All Checks are Passing
2 Passing Test
To install Android Studio (Install), run the following command from the command line or from PowerShell:
To upgrade Android Studio (Install), run the following command from the command line or from PowerShell:
To uninstall Android Studio (Install), run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download androidstudio --internalize --version=3.4.1.0 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade androidstudio -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade androidstudio -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure androidstudio installed
win_chocolatey:
name: androidstudio
state: present
version: 3.4.1.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'androidstudio' do
action :install
version '3.4.1.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: androidstudio,
Version: 3.4.1.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller androidstudio
{
Name = 'androidstudio'
Ensure = 'Present'
Version = '3.4.1.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'androidstudio':
provider => 'chocolatey',
ensure => '3.4.1.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install androidstudio version="3.4.1.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 20 Jun 2019.
Android Studio is the official IDE for Android development.
Features
- Visual layout editor
- APK Analyzer
- Fast emulator
- Intelligent code editor
- Flexible build system
- Realtime profilers
Package Parameters
The following package parameters can be set:
/PinnedToTaskbar
- this put a shortcut on your taskbar to Android Studio./AddToDesktop
- this puts a shortcut on your desktop to Android Studio.
These parameters can be passed to the installer with the use of --params
.
For example: --params '"/PinnedToTaskbar /AddToDesktop"'
.
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades
.
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64 = 'https://dl.google.com/dl/android/studio/install/3.4.1.0/android-studio-ide-183.5522156-windows.exe'
$checksum64 = '3bdeb96033d9aa54ed6192b5f95688464eed8d4d3a5bf23aa5b421f095b05741'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'EXE'
url64bit = $url64
softwareName = 'Android Studio*'
checksum64 = $checksum64
checksumType64= 'sha256'
silentArgs = '/S'
validExitCodes= @(0, 1223)
}
$pp = Get-PackageParameters
Install-ChocolateyPackage @packageArgs
if ($pp.PinnedToTaskbar) {
Write-Host "Param: PinToTaskbar - Pinning Android Studio to Taskbar..."
Install-ChocolateyPinnedTaskBarItem -TargetFilePath "${env:ProgramFiles}\Android\Android Studio\bin\studio64.exe"
}
if ($pp.AddToDesktop) {
Write-Host "Param: AddToDesktop - Adding Android Studio Shortcut to Desktop..."
$desktopPath = [Environment]::GetFolderPath("Desktop")
Install-ChocolateyShortcut `
-ShortcutFilePath "$desktopPath\Android Studio.lnk" `
-TargetPath "${env:ProgramFiles}\Android\Android Studio\bin\studio64.exe"
}
$ErrorActionPreference = 'Stop';
function Uninstall-ChocolateyPinnedTaskBarItem {
<#
.SYNOPSIS
Removes an item from the task bar linking to the provided path.
.PARAMETER TargetFilePath
The path to the application that should be launched when clicking on the task bar icon.
.EXAMPLE
Uninstall-ChocolateyPinnedTaskBarItem "${env:ProgramFiles(x86)}\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe"
#>
param(
[parameter(Mandatory=$true, Position=0)][string] $targetFilePath
)
Write-Debug "Running 'Uninstall-ChocolateyPinnedTaskBarItem' with targetFilePath:`'$targetFilePath`'";
try{
if (test-path($targetFilePath)) {
$verb = "Unpin from Taskbar"
$path= split-path $targetFilePath
$shell=new-object -com "Shell.Application"
$folder=$shell.Namespace($path)
$item = $folder.Parsename((split-path $targetFilePath -leaf))
$itemVerb = $item.Verbs() | ? {$_.Name.Replace("&","") -eq $verb}
if($itemVerb -eq $null){
Write-Host "Android Studio is not pinned to the taskbar"
} else {
$itemVerb.DoIt()
Write-Host "`'$targetFilePath`' has been unpinned from the task bar on your desktop"
}
} else {
$errorMessage = "`'$targetFilePath`' does not exist, not able to unpin from task bar"
}
if($errorMessage){
Write-Warning $errorMessage
}
} catch {
Write-Warning "Unable to unpin. Error captured was $($_.Exception.Message)."
}
}
Uninstall-ChocolateyPinnedTaskBarItem -TargetFilePath "${env:ProgramFiles}\Android\Android Studio\bin\studio64.exe"
$desktopPath = [Environment]::GetFolderPath("Desktop")
Remove-Item "$desktopPath\Android Studio.lnk" -ErrorAction SilentlyContinue -Force
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'Android Studio*'
fileType = 'EXE'
silentArgs = '/S'
validExitCodes= @(0, 1223)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Android Studio (Install) 4.1.1.0 | 2266 | Friday, November 13, 2020 | Approved |
Android Studio (Install) 4.1.0.19 | 6214 | Tuesday, October 20, 2020 | Approved |
Android Studio (Install) 4.0.2.0 | 1906 | Friday, October 9, 2020 | Approved |
Android Studio (Install) 4.0.1.0 | 6391 | Wednesday, July 22, 2020 | Approved |
Android Studio (Install) 4.0.0.16 | 4141 | Thursday, May 28, 2020 | Approved |
Android Studio (Install) 3.6.3.0 | 1738 | Saturday, May 16, 2020 | Approved |
Android Studio (Install) 3.6.2.0 | 3843 | Wednesday, April 1, 2020 | Approved |
Android Studio (Install) 3.6.1.0 | 3446 | Saturday, February 29, 2020 | Approved |
Android Studio (Install) 3.6.0.21 | 1275 | Tuesday, February 25, 2020 | Approved |
Android Studio (Install) 3.5.3.0 | 7033 | Friday, December 6, 2019 | Approved |
Android Studio (Install) 3.5.2.0 | 4849 | Tuesday, November 5, 2019 | Approved |
Android Studio (Install) 3.5.1.0 | 3651 | Thursday, October 3, 2019 | Approved |
Android Studio (Install) 3.5.0.21 | 5637 | Wednesday, August 21, 2019 | Approved |
Android Studio (Install) 3.4.2.0 | 4776 | Wednesday, July 10, 2019 | Approved |
Android Studio (Install) 3.4.1.0 | 6412 | Thursday, May 16, 2019 | Approved |
Android Studio (Install) 3.4.0.18 | 3872 | Wednesday, April 17, 2019 | Approved |
Android Studio (Install) 3.3.2.0 | 5076 | Tuesday, March 5, 2019 | Approved |
Android Studio (Install) 3.3.1.0 | 5018 | Thursday, February 7, 2019 | Approved |
Android Studio (Install) 3.3.0.20 | 3434 | Tuesday, January 15, 2019 | Approved |
Android Studio (Install) 3.2.1.0 | 7592 | Friday, October 12, 2018 | Approved |
Android Studio (Install) 3.2.0.26 | 2941 | Tuesday, September 25, 2018 | Approved |
Android Studio (Install) 3.1.4.0 | 5640 | Tuesday, August 7, 2018 | Approved |
Android Studio (Install) 3.1.3.020180709 | 2559 | Monday, July 9, 2018 | Approved |
Android Studio 3.1.3.0 | 2456 | Monday, June 11, 2018 | Approved |
Android Studio 3.1.2.0 | 5624 | Wednesday, April 25, 2018 | Approved |
Android Studio 3.1.1.0 | 2710 | Wednesday, April 11, 2018 | Approved |
Android Studio 3.1.0.16 | 3098 | Tuesday, March 27, 2018 | Approved |
Android Studio 3.0.1.0 | 10967 | Tuesday, November 21, 2017 | Approved |
Android Studio 3.0.0.18 | 1525 | Friday, October 27, 2017 | Approved |
Android Studio 2.3.3.0 | 3081 | Friday, August 11, 2017 | Approved |
Android Studio 2.3.1.0 | 2747 | Wednesday, April 19, 2017 | Approved |
Android Studio 2.3.0.8 | 1746 | Saturday, March 4, 2017 | Approved |
Android Studio 2.2.2.0 | 2789 | Friday, October 28, 2016 | Approved |
Android Studio 2.1.3.0 | 1832 | Monday, August 22, 2016 | Approved |
Android Studio 2.1.2.1 | 458 | Saturday, August 13, 2016 | Approved |
Android Studio 2.1.2.0 | 851 | Tuesday, June 28, 2016 | Approved |
Android Studio 2.1.1.0 | 363 | Thursday, May 12, 2016 | Approved |
Android Studio 2.0.0.20 | 342 | Thursday, May 12, 2016 | Approved |
Android Studio 1.5.1.0 | 1563 | Wednesday, December 30, 2015 | Approved |
Android Studio 1.5.0.0 | 328 | Wednesday, December 30, 2015 | Approved |
Android Studio 1.4.1.0 | 331 | Wednesday, December 30, 2015 | Approved |
Android Studio 1.4.0.10 | 481 | Thursday, October 8, 2015 | Approved |
Android Studio 1.3.1.0 | 340 | Tuesday, August 18, 2015 | Approved |
Android Studio 1.3.0.10 | 1097 | Tuesday, August 4, 2015 | Approved |
Android Studio 1.2.1.1 | 349 | Saturday, June 6, 2015 | Approved |
Android Studio 1.1.0 | 1401 | Tuesday, February 24, 2015 | Approved |
Android Studio 0.3.2.132893413 | 1587 | Friday, January 3, 2014 | Approved |
Android Studio 0.2.130.737825 | 595 | Tuesday, July 23, 2013 | Approved |
Android Studio 0.1.130.677228 | 543 | Monday, May 27, 2013 | Approved |
© 2018 Google LLC
This package has no dependencies.
Ground Rules:
- This discussion is only about Android Studio (Install) and the Android Studio (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Android Studio (Install), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.