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:

build-toolsUsing Eclipse

  1. In the root folder of your application project, find the project.properties file.
  2. Open the file and specify the Build Tools version by adding a buildtools property on a separate line:
    sdk.buildtools=17.0.0

build-toolsUsing Android Studio

  1. In the root folder of your application project, find the build.gradle file.
  2. Open the file and specify the Build Tools version by adding a buildToolsVersion property to the android section:
    android {
        ...
        buildToolsVersion "17.0.0"
        ...
    }

 
                    
            
                

相关文章:

  • 2021-12-20
  • 2021-05-16
  • 2021-05-01
  • 2021-12-15
  • 2021-10-18
  • 2021-10-18
  • 2022-12-23
  • 2021-10-27
猜你喜欢
  • 2021-07-22
  • 2022-12-23
  • 2021-08-26
  • 2021-09-14
  • 2022-01-07
  • 2022-12-23
  • 2021-12-19
相关资源
相似解决方案