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
(79)
►
októbra
októbra
(8)
►
septembra
septembra
(8)
►
augusta
augusta
(9)
►
júla
júla
(6)
►
júna
júna
(7)
►
mája
mája
(9)
►
apríla
apríla
(9)
►
marca
marca
(6)
►
februára
februára
(8)
►
januára
januára
(9)
►
2023
2023
(76)
►
decembra
decembra
(4)
►
novembra
novembra
(9)
►
októbra
októbra
(7)
►
septembra
septembra
(8)
►
augusta
augusta
(3)
►
júla
júla
(4)
►
júna
júna
(6)
►
mája
mája
(10)
►
apríla
apríla
(4)
►
marca
marca
(7)
►
februára
februára
(9)
►
januára
januára
(5)
►
2022
2022
(59)
►
decembra
decembra
(3)
►
novembra
novembra
(5)
►
októbra
októbra
(8)
►
septembra
septembra
(4)
►
augusta
augusta
(4)
►
júla
júla
(2)
►
júna
júna
(7)
►
mája
mája
(6)
►
apríla
apríla
(5)
►
marca
marca
(6)
►
februára
februára
(5)
►
januára
januára
(4)
►
2021
2021
(54)
►
decembra
decembra
(3)
►
novembra
novembra
(2)
►
októbra
októbra
(6)
►
septembra
septembra
(4)
►
augusta
augusta
(5)
►
júla
júla
(8)
►
júna
júna
(4)
►
mája
mája
(5)
►
apríla
apríla
(1)
►
marca
marca
(7)
►
februára
februára
(4)
►
januára
januára
(5)
►
2020
2020
(107)
►
decembra
decembra
(7)
►
novembra
novembra
(3)
►
októbra
októbra
(8)
►
septembra
septembra
(6)
►
augusta
augusta
(11)
►
júla
júla
(14)
►
júna
júna
(10)
►
mája
mája
(12)
►
apríla
apríla
(11)
►
marca
marca
(11)
►
februára
februára
(6)
►
januára
januára
(8)
►
2019
2019
(145)
►
decembra
decembra
(16)
►
novembra
novembra
(12)
►
októbra
októbra
(10)
►
septembra
septembra
(13)
►
augusta
augusta
(12)
►
júla
júla
(6)
►
júna
júna
(9)
►
mája
mája
(18)
►
apríla
apríla
(14)
►
marca
marca
(12)
►
februára
februára
(10)
►
januára
januára
(13)
►
2018
2018
(128)
►
decembra
decembra
(13)
►
novembra
novembra
(12)
►
októbra
októbra
(10)
►
septembra
septembra
(10)
►
augusta
augusta
(16)
►
júla
júla
(10)
►
júna
júna
(13)
►
mája
mája
(9)
►
apríla
apríla
(11)
►
marca
marca
(12)
►
februára
februára
(9)
►
januára
januára
(3)
▼
2017
2017
(48)
▼
decembra
decembra
(3)
Android Studio 3.1 Canary 6 is now available
ConstraintLayout 1.1.0 beta 4
Android Studio 3.1 Canary 5 is now available
►
novembra
novembra
(2)
►
októbra
októbra
(8)
►
septembra
septembra
(3)
►
augusta
augusta
(4)
►
júla
júla
(3)
►
júna
júna
(3)
►
mája
mája
(4)
►
apríla
apríla
(5)
►
marca
marca
(5)
►
februára
februára
(6)
►
januára
januára
(2)
►
2016
2016
(5)
►
decembra
decembra
(3)
►
novembra
novembra
(2)
Subscribe to updates
Príspevky
Atom
Príspevky
Android Developers
Android Studio
Preview
Release Updates
Android Studio 3.1 Canary 6 is now available
streda 20. decembra 2017
Android Studio 3.1 Canary 6 is now available in the Canary and Dev channels.
If you are
upgrading from 3.1 Canary 1, 2, or 3
, you need to download the latest version of the IDE from the
Android Studio Preview site
.
You might receive an error when updating your project to 3.1 Canary 6
. If so, you need to manually change the Android Gradle plugin version to
3.1.0-alpha06
as shown here:
buildscript { dependencies { classpath 'com.android.tools.build:gradle:3.1.0-alpha06' } }
Then click
Sync Project with Gradle Files
. T
he first sync will fail and you'll see a message asking you to upgrade the Gradle version in the wrapper, so follow the Quick Fix to apply the update.
This release includes general bug fixes and the following new features:
Upgrades the base IDE to
IntelliJ 2017.3
. You may notice changes in behavior and performance as a result of this merge. If you encounter changes you believe to be regressions, please
report a bug
.
Updates the
Kotlin plugin
to version 1.2.
Updates to
Data Binding
:
You can now use a
LiveData
object as an observable field in data binding expressions. The
ViewDataBinding
class now includes a new
setLifecycle
method that you need to use to use to observe
LiveData
objects.
New compiler
: You can preview a new incremental compiler for your data binding classes. To enable this compiler, add
android.databinding.enableV2=true
to your gradle.properties file, or include the following command line argument:
-Pandroid.databinding.enableV2=true
. Keep in mind, this compiler is
not backwards compatible
, so you need to recompile all of your data binding classes with this feature enabled to take advantage of incremental compilation. Note the following behavior changes when using the new compiler:
The Android plugin for Gradle now generates
Binding
classes for your layouts before compiling your Java code.
If a layout is included in more than one target resource configuration, the data binding library now defaults the view type to
android.view.View
for all views that share the same resource id but not view type.
Binding classes for library modules are compiled and packaged with its AAR. That is, app modules that depend on those library modules no longer need to regenerate those classes.
A module’s binding adapters can no longer change the behavior of adapters of the module’s dependencies. That is, binding adapters now only affect code in its own module and downstream consumers of the module.
The
ObervableField
class can now accept other
Observable
objects in its constructor. The
ObservableField
object registers a change when one of its
Observable
dependencies register a change.
Known issues:
Updating existing projects to the alpha 6 Android Gradle plugin fails. You must manually update to 3.1.0-alpha06 as described above.
When
using Java 8 language features
, the intentions menu item to “Set Language Level to 8" is missing.
AAPT2 may throw an error when adding a tabbed activity to a project which is created with Maps activity.
You may get an
IsolationException
error while building
LintTest
project.
Certain devices may cause a
java.lang.AssertionError
while working with profilers.
You may receive a "File Creation failed" error while recording espresso tests for Instant Apps that include code written in Kotlin.
You may receive a fatal exception when
using Java 8 language features
with Android Instant Apps projects.
Your app may see FATAL_EXCEPTION "Error inflating class ImageView" when adding color resources to an
ImageView
using the theme attribute.
You may receive a
TimeoutException
while deploying a Wear project to the emulator.
When creating a Android Instant Apps project that includes a
BottomNavigationView
, you may get a null pointer exception.
If you already have an Android Studio build on the
Canary or Dev channel
, you can get the update by clicking
Help > Check for Update
(or
Android Studio > Check for Updates
on Mac). Otherwise, you can
download here
.