http://developer.android.com/intl/zh-cn/tools/revisions/build-tools.html
可以更新到最新的版本
<sdk>/build-tools/ 下会有多个版本共存。
To use a specific version of the Build Tools in your application project:
- In the root folder of your application project, find the
project.propertiesfile. - Open the file and specify the Build Tools version by adding a
buildtoolsproperty on a separate line:sdk.buildtools=17.0.0
- In the root folder of your application project, find the
build.gradlefile. - Open the file and specify the Build Tools version by adding a
buildToolsVersionproperty to theandroidsection:android {
...
buildToolsVersion "17.0.0"
...
}
Using Eclipse