Skip to main content

Android Studio 0.2.7 Released - Android Tools Project Site


We've just released Android Studio 0.2.7. This issue fixes a number of important issues. The base IDE was updated to the IntelliJ EAP build #132.27; in the past we've just used nightly snapshots.

In the editor, .aar library dependencies are now properly supported, so library resources work properly in code completion, XML resource validation etc. The editor will also no longer auto-import android.R or R innerclasses, and the long standing issue of the R class sometimes not being found after a build should be fixed.

In the Gradle area, the Gradle tasks window now displays the available tasks, and build error output should now include all errors, including error source positions in cases it was missing (such as for resource merging errors). Furthermore, IDE HTTP proxies are passed to the gradle process which helps with downloading missing dependencies from network locations needing a proxy.

There are more fixes, so see the full release notes here:
http://tools.android.com/recent/androidstudio027released

Note also that if you are upgrading from a version prior to 0.2.6, and you're on Windows, be sure to read the installation instructions at the bottom of the following document, since you may need to migrate your settings:
http://tools.android.com/recent/androidstudio026released

If you have issues, follow up in the official Google+ community for Android Studio: Android Developer Tools:
https://plus.google.com/communities/114791428968349268860

#androiddev
http://tools.android.com/recent/androidstudio027released

Comments

Popular posts from this blog

Volley for client and server interaction (Android)

Volley provides client and server interaction with QUEUE basis, each and every request process separately, we can cancel our request from QUEUE. HERE is a code sample for Volley with json request format. GenerateRequest.java -------------------------------------------------------------------- package com.entrata.maintenance.network_communication.networkutils; import android.content.Context; import com.android.volley.AuthFailureError; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.JsonObjectRequest; import com.entrata.maintenance.application.ERPUserDefaults; import com.entrata.maintenance.network_communication.networkconstant.NetworkConstant; import com.entrata.maintenance.network_communication.networkexception.Error; import com.entrata.maintenance.network_communication.networkutil.SubdomainChange; import com.entrata.maintenance.utils.Logger; import com.google.gson.Gson; import org.json.JSONException; import org.js...
Java Code Examples for javax.net.ssl.HttpsURLConnection The following code examples are extracted from open source projects. You can click to vote up the examples you like. Your votes will be used in an intelligent system to get more and better code examples. Thanks for your votes! Code Example 1:   9  From project ADFS , under directory /adfs-hdfs-project/adfs-hdfs/src/main/java/org/apache/hadoop/hdfs/ . Source HsftpFileSystem.java @Override protected HttpURLConnection openConnection ( String path , String query ) throws IOException { query = addDelegationTokenParam ( query ); final URL url = new URL ( "https" , nnAddr . getHostName (), nnAddr . getPort (), path + '?' + query ); HttpsURLConnection conn =( HttpsURLConnection ) url . openConnection (); conn . setHostnameVerifier ( new DummyHostnameVerifier ()); return ( HttpURLConnection ) conn ; } Code Example 2:  ...

Improving Layout Performance

Improving Layout Performance Layouts are a key part of Android applications that directly affect the user experience. If implemented poorly, your layout can lead to a memory hungry application with slow UIs. The Android SDK includes tools to help you identify problems in your layout performance, which when combined the lessons here, you will be able to implement smooth scrolling interfaces with a minimum memory footprint. Lessons Optimizing Layout Hierarchies In the same way a complex web page can slow down load time, your layout hierarchy if too complex can also cause performance problems. This lesson shows how you can use SDK tools to inspect your layout and discover performance bottlenecks. Re-using Layouts with <include/> If your application UI repeats certain layout constructs in multiple places, this lesson shows you how to create efficient, re-usable layout constructs, then include them in the appropriate UI layouts. Loading Views On Demand Be...