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)
Android Studio 3.0 Canary 8 is now available
Android Studio 3.0 Canary 7 is now available
Android Studio 3.0 Canary 6 is now available
►
June
June
(3)
►
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 8 is now available
Monday, July 24, 2017
We have released Android Studio 3.0 Canary 8 to the Canary and Dev Channels. This release fixes the following issues:
Issue #63586454
:
JavaUastLanguagePlugin
may fail to translate a
PsiMethod
to a
UMethod
Issue #
63562276
: Resizing widgets in
LinearLayout
has weird behavior
Issue #
38236114
: Edittext input type dialog does not fit screen
Issue #
63295952
:
extractProguardFiles
task is not incremental
Issue #
37334887
: Layout editor: some view properties have insufficient field height
Issue #
63623801
:
ResourceNotFoundException
thrown when deploying a Kotlin project to an AVD running API 16
Our primary focus at this stage is to stabilize Android Studio 3.0 to a beta quality release. Please keep sending your feedback by clicking
Help > Submit Feedback
.
Android Studio 3.0 Canary 7 is now available
Monday, July 17, 2017
We have released Android Studio 3.0 Canary 7 to the Canary and Dev Channels.
Changes
Specify matching build types
. If a consumer (such as an app module) defines a build type that does not exist in a producer dependency (such as a library module), the variant-aware dependency resolution model won’t know which version of the producer to use and your build fails with the following error:
Error:Failed to resolve: Could not resolve project :mylibrary.
Required by:
project :app
You can now specify an alternative build type the consumer should use from the producer using the
android.buildTypeMatching
property as shown below. The plugin uses the alternative build type only if a matching build type is not found.
android {
…
// Let’s say your app configures a ‘staging’ build type and a library module
// it depends on does not. You can use the property below to tell the Android plugin
// to use a library’s ‘debug’ build type instead.
buildTypeMatching ‘staging’, ‘debug’
}
Fixes
We had a number of fixes make it into this build a few reported by our external users include:
63623801
ResourceNotFoundException running Kotlin project on API 16 AVD after upgrading to Canary 6
37111818
Layout Editor cannot edit widget margins in RelativeLayout
63252394
Android studio 3.0 canary build variants auto resolving error
Our primary focus at this stage is to stabilize Android Studio 3.0 to a beta quality release. Please keep sending your feedback by clicking Help > Submit Feedback.
Android Studio 3.0 Canary 6 is now available
Tuesday, July 11, 2017
We have released Android Studio 3.0 Canary 6 to the Canary and Dev Channels. This release fixes a variety of bugs, such as the following:
Fixes
Fixed an issue that caused
java.io.IOException
to be thrown due to broken R.txt.
Fixed an issue that prevented you from updating the Kotlin IDE plugin. (
issue #62697211
)
Fixed an issue that caused captured memory allocations to not display when using the Memory Profiler.
Fixed an issue where you need to invoke
Code > Convert Java to Kotlin
twice before the IDE converts your code.
Known Issues
IDE is not showing gradle upgrade plugin version dialog after close and reopen older plugin version project
IDE error "Invalid file" while deleting kotlin or java class files
Kotlin configure yellow ribbon does not show up until the file reopens after converting
IDE fatal error "java.util.NoSuchElementException" while removing copy pasted code from kotlin
IDE fatal error "Project is not yet initialized" while cloning desugar project
Attaching to debugger fails while working the combination of c++,kotlin and instant app enabled
Instant Run currently does not work with Gradle build cache. To use Instant Run, make sure you disable the build cache in your
build.properties
file:
org.gradle.caching=false
Please keep sending your feedback by clicking
Help
>
Submit Feedback
.