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.properties
file. - Open the file and specify the Build Tools version by adding a
buildtools
property on a separate line:sdk.buildtools=17.0.0
- In the root folder of your application project, find the
build.gradle
file. - Open the file and specify the Build Tools version by adding a
buildToolsVersion
property to theandroid
section:android {
...
buildToolsVersion "17.0.0"
...
}