Platform
Android Studio
Google Play
Jetpack
Docs
Blog
Download
What's New
User Guide
Preview
Home
Platform
Android Studio
Download
What's New
User Guide
Preview
Google Play
Docs
Blog
Download a Preview
Install Alongside Stable
New Features
Release Updates
Updates archive
►
2024
2024
(82)
►
November
November
(3)
►
October
October
(8)
►
September
September
(8)
►
August
August
(9)
►
July
July
(6)
►
June
June
(7)
►
May
May
(9)
►
April
April
(9)
►
March
March
(6)
►
February
February
(8)
►
January
January
(9)
►
2023
2023
(76)
►
December
December
(4)
►
November
November
(9)
►
October
October
(7)
►
September
September
(8)
►
August
August
(3)
►
July
July
(4)
►
June
June
(6)
►
May
May
(10)
►
April
April
(4)
►
March
March
(7)
►
February
February
(9)
►
January
January
(5)
►
2022
2022
(59)
►
December
December
(3)
►
November
November
(5)
►
October
October
(8)
►
September
September
(4)
►
August
August
(4)
►
July
July
(2)
►
June
June
(7)
►
May
May
(6)
►
April
April
(5)
►
March
March
(6)
►
February
February
(5)
►
January
January
(4)
►
2021
2021
(54)
►
December
December
(3)
►
November
November
(2)
►
October
October
(6)
►
September
September
(4)
►
August
August
(5)
►
July
July
(8)
►
June
June
(4)
►
May
May
(5)
►
April
April
(1)
►
March
March
(7)
►
February
February
(4)
►
January
January
(5)
►
2020
2020
(107)
►
December
December
(7)
►
November
November
(3)
►
October
October
(8)
►
September
September
(6)
►
August
August
(11)
►
July
July
(14)
►
June
June
(10)
►
May
May
(12)
►
April
April
(11)
►
March
March
(11)
►
February
February
(6)
►
January
January
(8)
►
2019
2019
(145)
►
December
December
(16)
►
November
November
(12)
►
October
October
(10)
►
September
September
(13)
►
August
August
(12)
►
July
July
(6)
►
June
June
(9)
►
May
May
(18)
►
April
April
(14)
►
March
March
(12)
►
February
February
(10)
►
January
January
(13)
►
2018
2018
(128)
►
December
December
(13)
►
November
November
(12)
►
October
October
(10)
►
September
September
(10)
►
August
August
(16)
►
July
July
(10)
►
June
June
(13)
►
May
May
(9)
►
April
April
(11)
►
March
March
(12)
►
February
February
(9)
►
January
January
(3)
▼
2017
2017
(48)
►
December
December
(3)
►
November
November
(2)
►
October
October
(8)
►
September
September
(3)
►
August
August
(4)
►
July
July
(3)
▼
June
June
(3)
Android Studio 3.0 Canary 5 is now available
Android Studio 3.0 Canary 4 is now available
Android Studio 3.0 Canary 3 is now available
►
May
May
(4)
►
April
April
(5)
►
March
March
(5)
►
February
February
(6)
►
January
January
(2)
►
2016
2016
(5)
►
December
December
(3)
►
November
November
(2)
Subscribe to updates
Posts
Atom
Posts
Release updates archive
Android Studio 3.0 Canary 5 is now available
Friday, June 30, 2017
We have released Android Studio 3.0 Canary 5 to the Canary and Dev Channels. This release includes a few improvements and fixes a variety of bugs, such as the following:
Changes
The
flavorSelection
property has moved to the
ProductFlavor
class. This means that you can choose the default variant your app consumes from a producer at the flavor level. Add this property to android.defaultConfig to apply it to all flavors:
android {
defaultConfig {
flavorSelection 'shape', 'square'
}
}
To learn more, read the
plugin 3.0.0 migration guide
.
Specifying PNG crunching is now a
BuildType
property and is disabled by default on debug builds:
android {
…
buildTypes {
release {
crunchPngs true
}
}
}
Android Gradle plugin is now based on Gradle 4.1 milestone 1. To update your project manually, add the following to your gradle-wrapper.properties file:
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-milestone-1-all.zip
Known Issues
Instant app deployment fails the first time on API levels 24 and 25.
When you are deploying your instant app from Android Studio to device or emulator image running Nougat, the deployment may fail the first time. The workaround for this issue is to click the Stop action and then click the Run button again.
Reliability issue with instant app provisioning cache.
If you manually unprovision your device or emulator image for instant app development, and then deploy the instant app from Android Studio, the deployment will fail because Android Studio will not provision your device/emulator image again. To workaround for this issue:
Go into the Run Configuration dialog and select the instantapp module on the left-hand pane.
Click the “Instant App Provision” task under “Before launch:Gradle-aware Make, Instant App Provision”
Click the edit (the pencil icon)
Check “Clear provisioned devices cache”
AAPT2. We are continuing to stabilize AAPT2 which enables incremental resource processing. If your build fails due to resource processing issue, please send us a bug report. To temporarily disable AAPT, set
android.enableAapt2=false
in your gradle.properties file.
Roboelectric is currently not compatible with AAPT2
Android Studio 3.0 Canary 4 is now available
Friday, June 16, 2017
We have released Android Studio 3.0 Canary 4 to the Canary and Dev Channels. This release primarily fixes a variety of bugs. Please keep sending your feedback by clicking
Help > Submit Feedback
.
Android Studio 3.0 Canary 3 is now available
Friday, June 2, 2017
We have just released Android Studio 3.0 Canary 3 to the Canary and Dev Channels. The Android Gradle Plugin 3.0.0-alpha3 was also released through maven.google.com. This release has fixes to Gradle, Kotlin, and many other fixes. We continue to fix bugs in all areas of Studio 3.0 as we stabilize our features, so please continue to pass on feedback.