The Android Developers blog just announced an update for the Android SDK Tools and ADB. This new release, version 17, brings many improvements to the build process. Here are some of my favourite new features:
- 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
- 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.
- Added feature to automatically setup JAR dependencies. Any
.jarfiles in the/libsfolder are added to the build configuration (similar to how the Ant build system works). Also,.jarfiles needed by library projects are also automatically added to projects that depend on those library projects. - Updated the resource chooser to show the resolved value for resources. For example, when selecting
@string/hellothe chooser displays a resolved value such as “Hello World”). The resource chooser also now allows you to edit the chosen value directly.
There are plenty more changes to be found in the SDK Release Notes and ADT Release Notes. The Android Emulator can now run x86 system images at native speed, thanks to contributions from Intel. Lint has also received a major upgrade, with 40 new rules checking for performance and code issues. READ MORE »












Reply To Comments Enabled For All Google Play Developers
2013 3 Comments Written by David Webb
A few months ago we heard that Google had started enabling “reply to comments” for selected Android developers on Google Play. Unfortunately I didn’t get access at the time, and have been waiting for a chance to try it out ever since. Well it seems like today is the big day. According to the official announcement by Google, all developers can now reply to comments on Google Play.
This new feature is a big deal for many Android developers. Anyone who’s released an app on Google Play knows what it’s like to receive a negative review, complaining about problems which have already been fixed, or are simply the result of a misunderstanding by the user. This kind of thing happens all the time. And up until now, it’s been impossible to follow up with these users. READ MORE »