Skip to content

Commit a5d42fa

Browse files
author
Vasil Chimev
authored
Update build-tools to 25.0.2 in setup scripts (#2408)
* Install build-tools-25.0.2 * Install build-tools-25.0.2
1 parent 8604567 commit a5d42fa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

setup/native-script.ps1

+1
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ $androidExecutable = [io.path]::combine($env:ANDROID_HOME, "tools", "android")
102102
echo y | cmd /c "$androidExecutable" update sdk --filter "platform-tools" --all --no-ui
103103
echo y | cmd /c "$androidExecutable" update sdk --filter "tools" --all --no-ui
104104
echo y | cmd /c "$androidExecutable" update sdk --filter "android-23" --all --no-ui
105+
echo y | cmd /c "$androidExecutable" update sdk --filter "build-tools-25.0.2" --all --no-ui
105106
echo y | cmd /c "$androidExecutable" update sdk --filter "build-tools-23.0.3" --all --no-ui
106107
echo y | cmd /c "$androidExecutable" update sdk --filter "extra-android-m2repository" --all --no-ui
107108

setup/native-script.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def install_environment_variable(name, value)
133133
execute("echo y | #{android_executable} update sdk --filter platform-tools --all --no-ui", error_msg)
134134
execute("echo y | #{android_executable} update sdk --filter tools --all --no-ui", error_msg)
135135
execute("echo y | #{android_executable} update sdk --filter android-23 --all --no-ui", error_msg)
136-
execute("echo y | #{android_executable} update sdk --filter build-tools-24.0.2 --all --no-ui", error_msg)
136+
execute("echo y | #{android_executable} update sdk --filter build-tools-25.0.2 --all --no-ui", error_msg)
137137
execute("echo y | #{android_executable} update sdk --filter build-tools-23.0.3 --all --no-ui", error_msg)
138138
execute("echo y | #{android_executable} update sdk --filter extra-android-m2repository --all --no-ui", error_msg)
139139
execute("echo y | #{android_executable} update sdk --filter extra-google-m2repository --all --no-ui", error_msg)

0 commit comments

Comments
 (0)