Android Studio 3.2 Canary 10 now available
Monday, April 9, 2018
Android Studio 3.2 Canary 10 is now available in the Canary and Dev channels.
Profiler Sessions
You can now save Profiler data as "sessions" to revisit and inspect later. (The profiler keeps your session data until you restart the IDE.)
After you deploy your app by selecting Run > Profile from the main menu, start a new session by clicking


When you record a method trace or capture a heap dump, the IDE adds that data (along with your app's network activity) as a separate entry to the current session, and you can easily switch back and forth between recordings to compare data. To stop adding data to the current session, click

System Trace
In the CPU profiler, select the new System Trace configuration to inspect your device's system CPU and thread activity. This trace configuration is built on systrace and is useful for investigating system-level issues, such as UI jank.

While using this new trace configuration, you can visually mark important code routines in the profiler timeline by instrumenting your code with the Trace class.
Navigate External Header Files
When using the Project window in previous versions of Android Studio, you could navigate to and inspect only the header files that belong to libraries you build locally. With this release, you can now also view and inspect header files included with external C/C++ library dependencies that you import into your app.
If you already include C/C++ code and libraries in your project, open the Project window on the left side of the IDE (click View > Tool Windows > Project) and make sure you select Android from the drop-down menu. In your project’s cpp/ directory, all headers that are within the scope of your app are organized under the include node for each of your local C/C++ library projects, as shown below.
General bug fixes:
This update includes fixes for the following public issues:
- Issue#76198464: Material Design icons picker doesn't launch but throws
- Issue#75425826: Improve min sdk conflict fix
- Issue#76004637: Update to Proguard 6.0.1
- Issue#67492130: Remove repeated Java 8 language features support message
- Issue#73602296: Implement BuildableArtifact API
- Issue#73576747: JSR/RET are not supported with computeFrames option
- Issue#72811718: java.io.IOException: Failed to find byte code for android/util/IntProperty
- Issue#73132906: Attaching native debugger is very slow and locks up Android Studio for multi-module projects.
- Issue#75974712: Warn if canvas.getWidth/getHeight are used in View#onDraw, Drawable#draw
- Issue#74352259: Android Studio does not see test project dependencies
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.