Android Travis ci未能找到版本23.0.3的生成工具

Android Travis ci未能找到版本23.0.3的生成工具,android,travis-ci,Android,Travis Ci,我在travis ci中将我的Android构建工具版本构建为23.0.3,但构建失败如下 FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':app'. > failed to find Build Tools revision 23.0.3 language: android android: components: - b

我在travis ci中将我的
Android构建工具版本构建为23.0.3
,但构建失败如下

FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring project ':app'.
> failed to find Build Tools revision 23.0.3
language: android
android:
  components:
    - build-tools-23.0.3
    - android-23
    - extra
在我的
.travis.yml
中,如下所示

FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring project ':app'.
> failed to find Build Tools revision 23.0.3
language: android
android:
  components:
    - build-tools-23.0.3
    - android-23
    - extra

这是travis ci构建日志,您需要更新sdk工具和平台工具,因为VM使用的版本已经过时,并且您尝试使用的构建工具需要它们。此更改将安装最新的工具:

language: android
android:
  components:
    - platform-tools
    - tools
    - build-tools-23.0.3
    - android-23
    - extra
进一步资料和建议