New Android SDK Tools and ADB version 17

As I just posted on the blog, the latest version of the Android SDK Tools has just been released. A heap of new features have been launched, including my favourites:
[ul]
[li] Added check for Android API calls that require a version of Android higher than the minimum supported version. This will save you from having to test your app on Android 1.6 for example, only to have it fail due to an API call that was introduced in Android 2.1
[/li][li] Added a feature that allows you to run some code only in debug mode. Builds now generate a class called BuildConfig containing a DEBUG constant that is automatically set according to your build type. You can check the (BuildConfig.DEBUG) constant in your code to run debug-only functions such as outputting debug logs.
[/li][li] Added feature to automatically setup JAR dependencies. Any .jar files in the /libs folder are added to the build configuration (similar to how the Ant build system works). Also, .jar files needed by library projects are also automatically added to projects that depend on those library projects.
[/li][li] Updated the resource chooser to show the resolved value for resources. For example, when selecting @string/hello the chooser displays a resolved value such as “Hello World”). The resource chooser also now allows you to edit the chosen value directly.
[/li][/ul]
What do you think of the new SDK? It looks like a pretty big upgrade, and has fixed most of the quirks that were annoying me with version 16.

So far only tested the emulator, its a bit faster so thats a great improvement.