-
-
Notifications
You must be signed in to change notification settings - Fork 197
[Do not merge] Update Android SDK Packages in setup scripts #2828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
echo y | cmd /c "$androidExecutable" update sdk --filter "build-tools-23.0.3" --all --no-ui | ||
echo y | cmd /c "$androidExecutable" update sdk --filter "extra-android-m2repository" --all --no-ui | ||
$androidExecutable = [io.path]::combine($env:ANDROID_HOME, "tools", "bin", "sdkmanager") | ||
echo y | cmd /c "$androidExecutable" "platform-tools" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unable to test, perhaps it should be escaped.
} | ||
echo y | cmd /c "$androidExecutable" "system-images;android-25;google_apis;x86" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's both scripts for macOS and Windows do the same.
To consider:
- creating an emulator based on the installed image
- referring to Android Virtual Devices article
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we install android-23
images?
Reason:
- It is the most used version
- Boots faster
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in #2857.
I'm closing this pull request in favour of: |
Updated and verified for macOS.
Updated but NOT verified for Windows - @etabakov, would appreciate your help here.