Travis-ci未能找到Build Tools修订版23.0.3

时间:2016-08-01 10:38:42

标签: android travis-ci

我在travis-ci中建立了我的library Android build-tools version to 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

在我的.travis.yml中,如下所示

language: android
android:
  components:
    - build-tools-23.0.3
    - android-23
    - extra

这是travis-ci build logs here

1 个答案:

答案 0 :(得分:0)

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

language: android
android:
  components:
    - platform-tools
    - tools
    - build-tools-23.0.3
    - android-23
    - extra

更多信息herehere