Skip to content

Commit a8b0d42

Browse files
committed
Version updated from 23.0.2 to 23.0.3
1 parent 9d6833b commit a8b0d42

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ If you have installed Chocolatey, you can complete these steps to set up JDK, an
133133

134134
> NOTE: You can install required Android Tools with the following command:
135135
```Shell
136-
android update sdk --filter tools,platform-tools,android-23,build-tools-23.0.2,sys-img-x86-android-22,extra-android-m2repository,extra-google-m2repository,extra-android-support --all --no-ui
136+
android update sdk --filter tools,platform-tools,android-23,build-tools-23.0.3,sys-img-x86-android-22,extra-android-m2repository,extra-google-m2repository,extra-android-support --all --no-ui
137137
```
138138

139139
## OS X
@@ -182,7 +182,7 @@ For example: ANDROID_HOME=/usr/local/Cellar/android-sdk/24/
182182
You can install the required Android tools with the following command:
183183

184184
```Shell
185-
echo yes | android update sdk --filter tools,platform-tools,android-23,build-tools-23.0.2,sys-img-x86-android-22,extra-android-m2repository,extra-google-m2repository,extra-android-support --all --no-ui
185+
echo yes | android update sdk --filter tools,platform-tools,android-23,build-tools-23.0.3,sys-img-x86-android-22,extra-android-m2repository,extra-google-m2repository,extra-android-support --all --no-ui
186186
```
187187

188188
## Linux
@@ -230,7 +230,7 @@ For example: ANDROID_HOME=/home/user/android-sdk
230230
You can install required Android Tools with the following command.
231231

232232
```Shell
233-
echo yes | android update sdk --filter tools,platform-tools,android-23,build-tools-23.0.2,sys-img-x86-android-22,extra-android-m2repository,extra-google-m2repository,extra-android-support --all --no-ui
233+
echo yes | android update sdk --filter tools,platform-tools,android-23,build-tools-23.0.3,sys-img-x86-android-22,extra-android-m2repository,extra-google-m2repository,extra-android-support --all --no-ui
234234
```
235235

236236
[Back to Top][1]

setup/native-script.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +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-23.0.2" --all --no-ui
105+
echo y | cmd /c "$androidExecutable" update sdk --filter "build-tools-23.0.3" --all --no-ui
106106
echo y | cmd /c "$androidExecutable" update sdk --filter "extra-android-m2repository" --all --no-ui
107107

108108
if ((Read-Host "Do you want to install Android emulator?") -eq 'y') {

setup/native-script.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def install(program_name, message, script, run_as_root = false, show_all_option
120120
execute("echo y | #{android_executable} update sdk --filter platform-tools --all --no-ui", error_msg)
121121
execute("echo y | #{android_executable} update sdk --filter tools --all --no-ui", error_msg)
122122
execute("echo y | #{android_executable} update sdk --filter android-23 --all --no-ui", error_msg)
123-
execute("echo y | #{android_executable} update sdk --filter build-tools-23.0.2 --all --no-ui", error_msg)
123+
execute("echo y | #{android_executable} update sdk --filter build-tools-23.0.3 --all --no-ui", error_msg)
124124
execute("echo y | #{android_executable} update sdk --filter extra-android-m2repository --all --no-ui", error_msg)
125125

126126
puts "Do you want to install Android emulator? (y/n)"

0 commit comments

Comments
 (0)