From 8e188dbc7a57509d68b5b873f9c252fb988f46c5 Mon Sep 17 00:00:00 2001 From: Michele Di Giorgio Date: Mon, 26 Sep 2016 18:08:42 +0100 Subject: [PATCH] vagrant: do no apply filters to update Android SDK Let Android SDK Manager decide what to update. Apparently with filters the build-tools are not installed. This seems to solve the issue. --- Vagrantfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 87070561d..86c95ac34 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -32,8 +32,7 @@ Vagrant.configure(2) do |config| wget -qO- $ANDROID_SDK_URL | tar xz -C tools expect -c ' set timeout -1; - spawn ./tools/android-sdk-linux/tools/android update sdk --no-ui \ - -t tool,platform-tool,platform,build-tools-24.0.1; + spawn ./tools/android-sdk-linux/tools/android update sdk --no-ui expect { "Do you accept the license" { exp_send "y\r" ; exp_continue } eof -- GitLab