~
$ react-native info
info Fetching system and libraries information...
System:
OS: macOS Mojave 10.14.6
CPU: (8) x64 Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz
Memory: 192.95 MB / 16.00 GB
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 11.12.0 - /usr/local/bin/node
Yarn: 1.7.0 - ~/.npm-packages/bin/yarn
npm: 6.9.0 - ~/.npm-packages/bin/npm
Watchman: 4.7.0 - /usr/local/bin/watchman
SDKs:
iOS SDK:
Platforms: iOS 13.2, DriverKit 19.0, macOS 10.15, tvOS 13.2, watchOS 6.1
Android SDK:
API Levels: 21, 22, 23, 24, 25, 26, 27, 28
Build Tools: 21.1.2, 23.0.1, 23.0.2, 23.0.3, 24.0.1, 25.0.0, 25.0.1, 25.0.2, 25.0.3, 26.0.0, 26.0.1, 26.0.2, 26.0.3, 27.0.1, 27.0.2, 27.0.3, 28.0.2, 28.0.3
Android NDK: 18.1.5063045
IDEs:
Xcode: 11.2.1/11B500 - /usr/bin/xcodebuild
npmPackages:
react: 16.11.0 => 16.11.0
react-native: 0.61.4 => 0.61.4
npmGlobalPackages:
create-react-native-app: 1.0.0
eslint-plugin-react-native: 3.1.0
react-native-asset: 2.0.0
react-native-cli: 2.0.1
react-native-fetch-blob: 0.10.8
react-native-git-upgrade: 0.2.6
react-native-image-picker: 0.26.7
~
Doctor seems not to detect the correct Android SDK, but seems to be taking the first one in list (build-tools)


That's a little hard to do, I think it depends on each environment 馃槵
I can add more info or run tests if needed to 馃
Thanks! This is a legit bug report. @lucasbento wdyt? We could sort the build-tools versions and pick the highest I guess? We now pick first, as you correctly noted.
Yes, that seems to be the way to fix it.
I'm gonna open a PR for this between today and tomorrow.
Thanks for reporting it @rborn!
One thing that I would like to understand here is: there's multiple build tools there (installed), how do we know which one is the active one? Because that may affect the report we provide under doctor command.
One thing that I would like to understand here is: there's multiple build tools there (installed), how do we know which one is the active one?
Perhaps @jmeistrich can help here as you worked on the current version of androidSDK.ts?
@grabbou: do you have any idea of which version is picked up when you run react-native run-android?
It was already using the first in the list before I got in there. But I added a bunch of code as a workaround because envinfo was not working on Windows. My pull request to envinfo is now merged (https://github.com/tabrindle/envinfo/pull/119), so while you're at it you may want to reverse that part of my change and go back to using envinfo: https://github.com/react-native-community/cli/commit/05ef7bd6b0c4cadfe23f48cd38ff4c2d19c8eb1f
Okay, so, I'm currently investigating which version to use when running the doctor command, I would say it's the latest but I want to be sure.
If anyone knows how the sorting part of the versions works (or if it's set somewhere) please let me know, any help is appreciated 馃檹
cc @dulmandakh ^
@rborn: do you know how to get multiple SDK Tools installed?
I believe I have almost the same response as you do when running sdkmanager --list but my react-native info returns:
SDKs:
iOS SDK:
Platforms: iOS 11.2, macOS 10.13, tvOS 11.2, watchOS 4.2
Android SDK:
Build Tools: 26.0.2
Which makes me think that my installation is wrong at some point.
I got the possible fix pretty much ready here, just need to test it through.
@lucasbento I'm attaching the replies I get when running the mentioned commands:
It looks like I can recover some disk space as I have a lot of system images I never use 馃槄
I also have some vars defined in ENV (.bash_profile) (not sure if it helps)
~~~
export CLASSPATH="/Library/Java/JavaVirtualMachines/jdk1.8.0_31.jdk/Contents/Home/jre/lib/rt.jar"
export ANDROID_HOME="/Work/sdks/android-sdk-macosx/"
export ANDROID_NDK="/Work/sdks/android-ndk-r18b/"
export ANDROID_SDK="/Work/sdks/android-sdk-macosx/"
export ANDROID_HVPROTO=ddm
export ANDROID_SDK_ROOT="/Work/sdks/android-sdk-macosx/"
export ANDROID_PLATFORM="/Work/sdks/android-sdk-macosx/platforms/android-26"
~~~
Please tell me if I can help with your PR in any way (and maybe HOW to execute it) 馃
ReactNative version:
~
$ react-native -v
react-native-cli: 2.0.1
react-native: 0.61.4
~
ReactNative info:
~
$ react-native info
info Fetching system and libraries information...
System:
OS: macOS Mojave 10.14.6
CPU: (8) x64 Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz
Memory: 635.19 MB / 16.00 GB
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 11.12.0 - /usr/local/bin/node
Yarn: 1.7.0 - ~/.npm-packages/bin/yarn
npm: 6.9.0 - ~/.npm-packages/bin/npm
Watchman: 4.7.0 - /usr/local/bin/watchman
SDKs:
iOS SDK:
Platforms: iOS 13.2, DriverKit 19.0, macOS 10.15, tvOS 13.2, watchOS 6.1
Android SDK:
API Levels: 21, 22, 23, 24, 25, 26, 27, 28
Build Tools: 21.1.2, 23.0.1, 23.0.2, 23.0.3, 24.0.1, 25.0.0, 25.0.1, 25.0.2, 25.0.3, 26.0.0, 26.0.1, 26.0.2, 26.0.3, 27.0.1, 27.0.2, 27.0.3, 28.0.2, 28.0.3
Android NDK: 18.1.5063045
IDEs:
Xcode: 11.2.1/11B500 - /usr/bin/xcodebuild
npmPackages:
react: 16.11.0 => 16.11.0
react-native: 0.61.4 => 0.61.4
npmGlobalPackages:
create-react-native-app: 1.0.0
eslint-plugin-react-native: 3.1.0
react-native-asset: 2.0.0
react-native-cli: 2.0.1
react-native-fetch-blob: 0.10.8
react-native-git-upgrade: 0.2.6
react-native-image-picker: 0.26.7
~
SDKManager list: (that's a big one)
~~~
$ /Work/sdks/android-sdk-macosx/tools/bin/sdkmanager --list
Installed packages:
Path | Version | Description | Location
------- | ------- | ------- | -------
build-tools;21.1.2 | 21.1.2 | Android SDK Build-Tools 21.1.2 | build-tools/21.1.2/
build-tools;23.0.1 | 23.0.1 | Android SDK Build-Tools 23.0.1 | build-tools/23.0.1/
build-tools;23.0.2 | 23.0.2 | Android SDK Build-Tools 23.0.2 | build-tools/23.0.2/
build-tools;23.0.3 | 23.0.3 | Android SDK Build-Tools 23.0.3 | build-tools/23.0.3/
build-tools;24.0.1 | 24.0.1 | Android SDK Build-Tools 24.0.1 | build-tools/24.0.1/
build-tools;25.0.0 | 25.0.0 | Android SDK Build-Tools 25 | build-tools/25.0.0/
build-tools;25.0.1 | 25.0.1 | Android SDK Build-Tools 25.0.1 | build-tools/25.0.1/
build-tools;25.0.2 | 25.0.2 | Android SDK Build-Tools 25.0.2 | build-tools/25.0.2/
build-tools;25.0.3 | 25.0.3 | Android SDK Build-Tools 25.0.3 | build-tools/25.0.3/
build-tools;26.0.0 | 26.0.0 | Android SDK Build-Tools 26 | build-tools/26.0.0/
build-tools;26.0.1 | 26.0.1 | Android SDK Build-Tools 26.0.1 | build-tools/26.0.1/
build-tools;26.0.2 | 26.0.2 | Android SDK Build-Tools 26.0.2 | build-tools/26.0.2/
build-tools;26.0.3 | 26.0.3 | Android SDK Build-Tools 26.0.3 | build-tools/26.0.3/
build-tools;27.0.1 | 27.0.1 | Android SDK Build-Tools 27.0.1 | build-tools/27.0.1/
build-tools;27.0.2 | 27.0.2 | Android SDK Build-Tools 27.0.2 | build-tools/27.0.2/
build-tools;27.0.3 | 27.0.3 | Android SDK Build-Tools 27.0.3 | build-tools/27.0.3/
build-tools;28.0.2 | 28.0.2 | Android SDK Build-Tools 28.0.2 | build-tools/28.0.2/
build-tools;28.0.3 | 28.0.3 | Android SDK Build-Tools 28.0.3 | build-tools/28.0.3/
extras;android;m2repository | 47.0.0 | Android Support Repository | extras/android/m2repository/
extras;android;support | 23.2.1 | Android Support Library, rev 2... | extras/android/support/
extras;google;g...e_play_services | 40.0.0 | Google Play services, rev 40 | extras/google/g..._play_services/
extras;google;m2repository | 51.0.0 | Google Repository, rev 51 | extras/google/m2repository/
extras;intel;Ha...ecution_Manager | 7.2.0 | Intel x86 Emulator Accelerator... | extras/intel/Ha...cution_Manager/
patcher;v4 | 1 | SDK Patch Applier v4 | patcher/v4/
platform-tools | 28.0.0 | Android SDK Platform-Tools 28 | platform-tools/
platforms;android-21 | 2 | Android SDK Platform 21, rev 2 | platforms/android-21/
platforms;android-22 | 2 | Android SDK Platform 22, rev 2 | platforms/android-22/
platforms;android-23 | 3 | Android SDK Platform 23 | platforms/android-23/
platforms;android-24 | 2 | Android SDK Platform 24, rev 2 | platforms/android-24/
platforms;android-25 | 3 | Android SDK Platform 25, rev 3 | platforms/android-25/
platforms;android-26 | 2 | Android SDK Platform 26 | platforms/android-26/
platforms;android-27 | 1 | Android SDK Platform 27 | platforms/android-27/
platforms;android-28 | 6 | Android SDK Platform 28 | platforms/android-28/
tools | 25.2.5 | Android SDK Tools 25.2.5 | tools/
Available Packages:
Path | Version | Description
------- | ------- | -------
add-ons;addon-g..._apis-google-15 | 3 | Google APIs
add-ons;addon-g..._apis-google-16 | 4 | Google APIs
add-ons;addon-g..._apis-google-17 | 4 | Google APIs
add-ons;addon-g..._apis-google-18 | 4 | Google APIs
add-ons;addon-g..._apis-google-19 | 20 | Google APIs
add-ons;addon-g..._apis-google-21 | 1 | Google APIs
add-ons;addon-g..._apis-google-22 | 1 | Google APIs
add-ons;addon-g..._apis-google-23 | 1 | Google APIs
add-ons;addon-g..._apis-google-24 | 1 | Google APIs
add-ons;addon-g...e_gdk-google-19 | 11 | Glass Development Kit Preview
build-tools;19.1.0 | 19.1.0 | Android SDK Build-Tools 19.1
build-tools;20.0.0 | 20.0.0 | Android SDK Build-Tools 20
build-tools;21.1.2 | 21.1.2 | Android SDK Build-Tools 21.1.2
build-tools;22.0.1 | 22.0.1 | Android SDK Build-Tools 22.0.1
build-tools;23.0.1 | 23.0.1 | Android SDK Build-Tools 23.0.1
build-tools;23.0.2 | 23.0.2 | Android SDK Build-Tools 23.0.2
build-tools;23.0.3 | 23.0.3 | Android SDK Build-Tools 23.0.3
build-tools;24.0.0 | 24.0.0 | Android SDK Build-Tools 24
build-tools;24.0.1 | 24.0.1 | Android SDK Build-Tools 24.0.1
build-tools;24.0.2 | 24.0.2 | Android SDK Build-Tools 24.0.2
build-tools;24.0.3 | 24.0.3 | Android SDK Build-Tools 24.0.3
build-tools;25.0.0 | 25.0.0 | Android SDK Build-Tools 25
build-tools;25.0.1 | 25.0.1 | Android SDK Build-Tools 25.0.1
build-tools;25.0.2 | 25.0.2 | Android SDK Build-Tools 25.0.2
build-tools;25.0.3 | 25.0.3 | Android SDK Build-Tools 25.0.3
build-tools;26.0.0 | 26.0.0 | Android SDK Build-Tools 26
build-tools;26.0.1 | 26.0.1 | Android SDK Build-Tools 26.0.1
build-tools;26.0.2 | 26.0.2 | Android SDK Build-Tools 26.0.2
build-tools;26.0.3 | 26.0.3 | Android SDK Build-Tools 26.0.3
build-tools;27.0.0 | 27.0.0 | Android SDK Build-Tools 27
build-tools;27.0.1 | 27.0.1 | Android SDK Build-Tools 27.0.1
build-tools;27.0.2 | 27.0.2 | Android SDK Build-Tools 27.0.2
build-tools;27.0.3 | 27.0.3 | Android SDK Build-Tools 27.0.3
build-tools;28.0.0 | 28.0.0 | Android SDK Build-Tools 28
build-tools;28.0.1 | 28.0.1 | Android SDK Build-Tools 28.0.1
build-tools;28.0.2 | 28.0.2 | Android SDK Build-Tools 28.0.2
build-tools;28.0.3 | 28.0.3 | Android SDK Build-Tools 28.0.3
build-tools;29.0.0 | 29.0.0 | Android SDK Build-Tools 29
build-tools;29.0.1 | 29.0.1 | Android SDK Build-Tools 29.0.1
build-tools;29.0.2 | 29.0.2 | Android SDK Build-Tools 29.0.2
cmake;3.10.2.4988404 | 3.10.2 | CMake 3.10.2.4988404
cmake;3.6.4111459 | 3.6.4111459 | CMake 3.6.4111459
docs | 1 | Documentation for Android SDK
emulator | 29.2.1 | Android Emulator
extras;android;gapid;1 | 1.0.3 | GPU Debugging tools
extras;android;gapid;3 | 3.1.0 | GPU Debugging tools
extras;android;m2repository | 47.0.0 | Android Support Repository
extras;google;auto | 1.1 | Android Auto Desktop Head Unit...
extras;google;g...e_play_services | 49 | Google Play services
extras;google;instantapps | 1.9.0 | Google Play Instant Developmen...
extras;google;m2repository | 58 | Google Repository
extras;google;m...t_apk_expansion | 1 | Google Play APK Expansion library
extras;google;market_licensing | 1 | Google Play Licensing Library
extras;google;simulators | 1 | Android Auto API Simulators
extras;google;webdriver | 2 | Google Web Driver
extras;intel;Ha...ecution_Manager | 7.5.1 | Intel x86 Emulator Accelerator...
extras;m2reposi...ut-solver;1.0.0 | 1 | Solver for ConstraintLayout 1.0.0
extras;m2reposi...er;1.0.0-alpha4 | 1 | com.android.support.constraint...
extras;m2reposi...er;1.0.0-alpha8 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ver;1.0.0-beta1 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ver;1.0.0-beta2 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ver;1.0.0-beta3 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ver;1.0.0-beta4 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ver;1.0.0-beta5 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ut-solver;1.0.1 | 1 | Solver for ConstraintLayout 1.0.1
extras;m2reposi...ut-solver;1.0.2 | 1 | Solver for ConstraintLayout 1.0.2
extras;m2reposi...nt-layout;1.0.0 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...ut;1.0.0-alpha4 | 1 | com.android.support.constraint...
extras;m2reposi...ut;1.0.0-alpha8 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...out;1.0.0-beta1 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...out;1.0.0-beta2 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...out;1.0.0-beta3 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...out;1.0.0-beta4 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...out;1.0.0-beta5 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...nt-layout;1.0.1 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...nt-layout;1.0.2 | 1 | ConstraintLayout for Android 1...
lldb;2.0 | 2.0.2558144 | LLDB 2.0
lldb;2.1 | 2.1.2852477 | LLDB 2.1
lldb;2.2 | 2.2.3271982 | LLDB 2.2
lldb;2.3 | 2.3.3614996 | LLDB 2.3
lldb;3.0 | 3.0.4213617 | LLDB 3.0
lldb;3.1 | 3.1.4508709 | LLDB 3.1
ndk-bundle | 20.1.5948944 | NDK
ndk;16.1.4479499 | 16.1.4479499 | NDK (Side by side) 16.1.4479499
ndk;17.2.4988734 | 17.2.4988734 | NDK (Side by side) 17.2.4988734
ndk;18.1.5063045 | 18.1.5063045 | NDK (Side by side) 18.1.5063045
ndk;19.2.5345600 | 19.2.5345600 | NDK (Side by side) 19.2.5345600
ndk;20.0.5594570 | 20.0.5594570 | NDK (Side by side) 20.0.5594570
ndk;20.1.5948944 | 20.1.5948944 | NDK (Side by side) 20.1.5948944
patcher;v4 | 1 | SDK Patch Applier v4
platform-tools | 29.0.5 | Android SDK Platform-Tools
platforms;android-10 | 2 | Android SDK Platform 10
platforms;android-11 | 2 | Android SDK Platform 11
platforms;android-12 | 3 | Android SDK Platform 12
platforms;android-13 | 1 | Android SDK Platform 13
platforms;android-14 | 4 | Android SDK Platform 14
platforms;android-15 | 5 | Android SDK Platform 15
platforms;android-16 | 5 | Android SDK Platform 16
platforms;android-17 | 3 | Android SDK Platform 17
platforms;android-18 | 3 | Android SDK Platform 18
platforms;android-19 | 4 | Android SDK Platform 19
platforms;android-20 | 2 | Android SDK Platform 20
platforms;android-21 | 2 | Android SDK Platform 21
platforms;android-22 | 2 | Android SDK Platform 22
platforms;android-23 | 3 | Android SDK Platform 23
platforms;android-24 | 2 | Android SDK Platform 24
platforms;android-25 | 3 | Android SDK Platform 25
platforms;android-26 | 2 | Android SDK Platform 26
platforms;android-27 | 3 | Android SDK Platform 27
platforms;android-28 | 6 | Android SDK Platform 28
platforms;android-29 | 3 | Android SDK Platform 29
platforms;android-7 | 3 | Android SDK Platform 7
platforms;android-8 | 3 | Android SDK Platform 8
platforms;android-9 | 2 | Android SDK Platform 9
sources;android-15 | 2 | Sources for Android 15
sources;android-16 | 2 | Sources for Android 16
sources;android-17 | 1 | Sources for Android 17
sources;android-18 | 1 | Sources for Android 18
sources;android-19 | 2 | Sources for Android 19
sources;android-20 | 1 | Sources for Android 20
sources;android-21 | 1 | Sources for Android 21
sources;android-22 | 1 | Sources for Android 22
sources;android-23 | 1 | Sources for Android 23
sources;android-24 | 1 | Sources for Android 24
sources;android-25 | 1 | Sources for Android 25
sources;android-26 | 1 | Sources for Android 26
sources;android-27 | 1 | Sources for Android 27
sources;android-28 | 1 | Sources for Android 28
sources;android-29 | 1 | Sources for Android 29
system-images;a...ult;armeabi-v7a | 5 | ARM EABI v7a System Image
system-images;a...-10;default;x86 | 5 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 6 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 6 | Google APIs Intel x86 Atom Sys...
system-images;a...ult;armeabi-v7a | 2 | ARM EABI v7a System Image
system-images;a...ult;armeabi-v7a | 5 | ARM EABI v7a System Image
system-images;a...-15;default;x86 | 5 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 6 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 6 | Google APIs Intel x86 Atom Sys...
system-images;a...ult;armeabi-v7a | 6 | ARM EABI v7a System Image
system-images;a...16;default;mips | 1 | MIPS System Image
system-images;a...-16;default;x86 | 6 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 6 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 6 | Google APIs Intel x86 Atom Sys...
system-images;a...ult;armeabi-v7a | 6 | ARM EABI v7a System Image
system-images;a...17;default;mips | 1 | MIPS System Image
system-images;a...-17;default;x86 | 4 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 6 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 6 | Google APIs Intel x86 Atom Sys...
system-images;a...ult;armeabi-v7a | 5 | ARM EABI v7a System Image
system-images;a...-18;default;x86 | 4 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 6 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 6 | Google APIs Intel x86 Atom Sys...
system-images;a...ult;armeabi-v7a | 5 | ARM EABI v7a System Image
system-images;a...-19;default;x86 | 6 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 38 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 38 | Google APIs Intel x86 Atom Sys...
system-images;a...-tv;armeabi-v7a | 3 | Android TV ARM EABI v7a System...
system-images;a...;android-tv;x86 | 3 | Android TV Intel x86 Atom Syst...
system-images;a...ult;armeabi-v7a | 4 | ARM EABI v7a System Image
system-images;a...-21;default;x86 | 5 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 5 | Intel x86 Atom_64 System Image
system-images;a...pis;armeabi-v7a | 30 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 30 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 30 | Google APIs Intel x86 Atom_64 ...
system-images;a...;android-tv;x86 | 3 | Android TV Intel x86 Atom Syst...
system-images;a...ult;armeabi-v7a | 2 | ARM EABI v7a System Image
system-images;a...-22;default;x86 | 6 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 6 | Intel x86 Atom_64 System Image
system-images;a...pis;armeabi-v7a | 24 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 24 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 24 | Google APIs Intel x86 Atom_64 ...
system-images;a...-tv;armeabi-v7a | 12 | Android TV ARM EABI v7a System...
system-images;a...;android-tv;x86 | 19 | Android TV Intel x86 Atom Syst...
system-images;a...ear;armeabi-v7a | 6 | Android Wear ARM EABI v7a Syst...
system-images;a...ndroid-wear;x86 | 6 | Android Wear Intel x86 Atom Sy...
system-images;a...ult;armeabi-v7a | 6 | ARM EABI v7a System Image
system-images;a...-23;default;x86 | 10 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 10 | Intel x86 Atom_64 System Image
system-images;a...pis;armeabi-v7a | 31 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 31 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 31 | Google APIs Intel x86 Atom_64 ...
system-images;a...;android-tv;x86 | 20 | Android TV Intel x86 Atom Syst...
system-images;a...fault;arm64-v8a | 7 | ARM 64 v8a System Image
system-images;a...ult;armeabi-v7a | 7 | ARM EABI v7a System Image
system-images;a...-24;default;x86 | 8 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 8 | Intel x86 Atom_64 System Image
system-images;a..._apis;arm64-v8a | 25 | Google APIs ARM 64 v8a System ...
system-images;a...pis;armeabi-v7a | 25 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 25 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 25 | Google APIs Intel x86 Atom_64 ...
system-images;a...s_playstore;x86 | 19 | Google Play Intel x86 Atom Sys...
system-images;a...;android-tv;x86 | 14 | Android TV Intel x86 Atom Syst...
system-images;a...-cn;armeabi-v7a | 4 | China version of Android Wear ...
system-images;a...oid-wear-cn;x86 | 4 | China version of Android Wear ...
system-images;a...ear;armeabi-v7a | 3 | Android Wear ARM EABI v7a Syst...
system-images;a...ndroid-wear;x86 | 3 | Android Wear Intel x86 Atom Sy...
system-images;a...-25;default;x86 | 1 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 1 | Intel x86 Atom_64 System Image
system-images;a..._apis;arm64-v8a | 16 | Google APIs ARM 64 v8a System ...
system-images;a...pis;armeabi-v7a | 16 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 16 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 16 | Google APIs Intel x86 Atom_64 ...
system-images;a...s_playstore;x86 | 9 | Google Play Intel x86 Atom Sys...
system-images;a...;android-tv;x86 | 12 | Android TV Intel x86 Atom Syst...
system-images;a...oid-wear-cn;x86 | 4 | China version of Android Wear ...
system-images;a...ndroid-wear;x86 | 4 | Android Wear Intel x86 Atom Sy...
system-images;a...-26;default;x86 | 1 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 1 | Intel x86 Atom_64 System Image
system-images;a...google_apis;x86 | 14 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 14 | Google APIs Intel x86 Atom_64 ...
system-images;a...s_playstore;x86 | 7 | Google Play Intel x86 Atom Sys...
system-images;a...;android-tv;x86 | 7 | Android TV Intel x86 Atom Syst...
system-images;a...-27;default;x86 | 1 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 1 | Intel x86 Atom_64 System Image
system-images;a...google_apis;x86 | 9 | Google APIs Intel x86 Atom Sys...
system-images;a...s_playstore;x86 | 3 | Google Play Intel x86 Atom Sys...
system-images;a...;android-tv;x86 | 8 | Android TV Intel x86 Atom Syst...
system-images;a...oid-wear-cn;x86 | 3 | China version of Wear OS Intel...
system-images;a...ndroid-wear;x86 | 3 | Wear OS Intel x86 Atom System ...
system-images;a...-28;default;x86 | 4 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 4 | Intel x86 Atom_64 System Image
system-images;a...google_apis;x86 | 10 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 9 | Google APIs Intel x86 Atom_64 ...
system-images;a...s_playstore;x86 | 9 | Google Play Intel x86 Atom Sys...
system-images;a...laystore;x86_64 | 8 | Google Play Intel x86 Atom_64 ...
system-images;a...-29;default;x86 | 7 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 7 | Intel x86 Atom_64 System Image
system-images;a...google_apis;x86 | 9 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 9 | Google APIs Intel x86 Atom_64 ...
system-images;a...s_playstore;x86 | 8 | Google Play Intel x86 Atom Sys...
system-images;a...laystore;x86_64 | 8 | Google Play Intel x86 Atom_64 ...
system-images;a...;android-tv;x86 | 1 | Android TV Intel x86 Atom Syst...
tools | 26.1.1 | Android SDK Tools
Available Updates:
ID | Installed | Available
------- | ------- | -------
extras;google;google_play_services | 40.0.0 | 49
extras;google;m2repository | 51.0.0 | 58
extras;intel;Hardware_Accelerated_Execution_Manager | 7.2.0 | 7.5.1
platform-tools | 28.0.0 | 29.0.5
platforms;android-27 | 1 | 3
tools | 25.2.5 | 26.1.1
done
~~~
+1
same prob haunting me too
Most helpful comment
@lucasbento I'm attaching the replies I get when running the mentioned commands:
It looks like I can recover some disk space as I have a lot of system images I never use 馃槄
I also have some vars defined in ENV (.bash_profile) (not sure if it helps)
~~~
export CLASSPATH="/Library/Java/JavaVirtualMachines/jdk1.8.0_31.jdk/Contents/Home/jre/lib/rt.jar"
export ANDROID_HOME="/Work/sdks/android-sdk-macosx/"
export ANDROID_NDK="/Work/sdks/android-ndk-r18b/"
export ANDROID_SDK="/Work/sdks/android-sdk-macosx/"
export ANDROID_HVPROTO=ddm
export ANDROID_SDK_ROOT="/Work/sdks/android-sdk-macosx/"
export ANDROID_PLATFORM="/Work/sdks/android-sdk-macosx/platforms/android-26"
~~~
Please tell me if I can help with your PR in any way (and maybe HOW to execute it) 馃
ReactNative version:
~$ react-native -v
react-native-cli: 2.0.1
react-native: 0.61.4
~
ReactNative info:
~$ react-native info
info Fetching system and libraries information...
System:
OS: macOS Mojave 10.14.6
CPU: (8) x64 Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz
Memory: 635.19 MB / 16.00 GB
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 11.12.0 - /usr/local/bin/node
Yarn: 1.7.0 - ~/.npm-packages/bin/yarn
npm: 6.9.0 - ~/.npm-packages/bin/npm
Watchman: 4.7.0 - /usr/local/bin/watchman
SDKs:
iOS SDK:
Platforms: iOS 13.2, DriverKit 19.0, macOS 10.15, tvOS 13.2, watchOS 6.1
Android SDK:
API Levels: 21, 22, 23, 24, 25, 26, 27, 28
Build Tools: 21.1.2, 23.0.1, 23.0.2, 23.0.3, 24.0.1, 25.0.0, 25.0.1, 25.0.2, 25.0.3, 26.0.0, 26.0.1, 26.0.2, 26.0.3, 27.0.1, 27.0.2, 27.0.3, 28.0.2, 28.0.3
Android NDK: 18.1.5063045
IDEs:
Xcode: 11.2.1/11B500 - /usr/bin/xcodebuild
npmPackages:
react: 16.11.0 => 16.11.0
react-native: 0.61.4 => 0.61.4
npmGlobalPackages:
create-react-native-app: 1.0.0
eslint-plugin-react-native: 3.1.0
react-native-asset: 2.0.0
react-native-cli: 2.0.1
react-native-fetch-blob: 0.10.8
react-native-git-upgrade: 0.2.6
react-native-image-picker: 0.26.7
~
SDKManager list: (that's a big one)
~~~
$ /Work/sdks/android-sdk-macosx/tools/bin/sdkmanager --list
Installed packages:
Path | Version | Description | Location
------- | ------- | ------- | -------
build-tools;21.1.2 | 21.1.2 | Android SDK Build-Tools 21.1.2 | build-tools/21.1.2/
build-tools;23.0.1 | 23.0.1 | Android SDK Build-Tools 23.0.1 | build-tools/23.0.1/
build-tools;23.0.2 | 23.0.2 | Android SDK Build-Tools 23.0.2 | build-tools/23.0.2/
build-tools;23.0.3 | 23.0.3 | Android SDK Build-Tools 23.0.3 | build-tools/23.0.3/
build-tools;24.0.1 | 24.0.1 | Android SDK Build-Tools 24.0.1 | build-tools/24.0.1/
build-tools;25.0.0 | 25.0.0 | Android SDK Build-Tools 25 | build-tools/25.0.0/
build-tools;25.0.1 | 25.0.1 | Android SDK Build-Tools 25.0.1 | build-tools/25.0.1/
build-tools;25.0.2 | 25.0.2 | Android SDK Build-Tools 25.0.2 | build-tools/25.0.2/
build-tools;25.0.3 | 25.0.3 | Android SDK Build-Tools 25.0.3 | build-tools/25.0.3/
build-tools;26.0.0 | 26.0.0 | Android SDK Build-Tools 26 | build-tools/26.0.0/
build-tools;26.0.1 | 26.0.1 | Android SDK Build-Tools 26.0.1 | build-tools/26.0.1/
build-tools;26.0.2 | 26.0.2 | Android SDK Build-Tools 26.0.2 | build-tools/26.0.2/
build-tools;26.0.3 | 26.0.3 | Android SDK Build-Tools 26.0.3 | build-tools/26.0.3/
build-tools;27.0.1 | 27.0.1 | Android SDK Build-Tools 27.0.1 | build-tools/27.0.1/
build-tools;27.0.2 | 27.0.2 | Android SDK Build-Tools 27.0.2 | build-tools/27.0.2/
build-tools;27.0.3 | 27.0.3 | Android SDK Build-Tools 27.0.3 | build-tools/27.0.3/
build-tools;28.0.2 | 28.0.2 | Android SDK Build-Tools 28.0.2 | build-tools/28.0.2/
build-tools;28.0.3 | 28.0.3 | Android SDK Build-Tools 28.0.3 | build-tools/28.0.3/
extras;android;m2repository | 47.0.0 | Android Support Repository | extras/android/m2repository/
extras;android;support | 23.2.1 | Android Support Library, rev 2... | extras/android/support/
extras;google;g...e_play_services | 40.0.0 | Google Play services, rev 40 | extras/google/g..._play_services/
extras;google;m2repository | 51.0.0 | Google Repository, rev 51 | extras/google/m2repository/
extras;intel;Ha...ecution_Manager | 7.2.0 | Intel x86 Emulator Accelerator... | extras/intel/Ha...cution_Manager/
patcher;v4 | 1 | SDK Patch Applier v4 | patcher/v4/
platform-tools | 28.0.0 | Android SDK Platform-Tools 28 | platform-tools/
platforms;android-21 | 2 | Android SDK Platform 21, rev 2 | platforms/android-21/
platforms;android-22 | 2 | Android SDK Platform 22, rev 2 | platforms/android-22/
platforms;android-23 | 3 | Android SDK Platform 23 | platforms/android-23/
platforms;android-24 | 2 | Android SDK Platform 24, rev 2 | platforms/android-24/
platforms;android-25 | 3 | Android SDK Platform 25, rev 3 | platforms/android-25/
platforms;android-26 | 2 | Android SDK Platform 26 | platforms/android-26/
platforms;android-27 | 1 | Android SDK Platform 27 | platforms/android-27/
platforms;android-28 | 6 | Android SDK Platform 28 | platforms/android-28/
tools | 25.2.5 | Android SDK Tools 25.2.5 | tools/
Available Packages:
Path | Version | Description
------- | ------- | -------
add-ons;addon-g..._apis-google-15 | 3 | Google APIs
add-ons;addon-g..._apis-google-16 | 4 | Google APIs
add-ons;addon-g..._apis-google-17 | 4 | Google APIs
add-ons;addon-g..._apis-google-18 | 4 | Google APIs
add-ons;addon-g..._apis-google-19 | 20 | Google APIs
add-ons;addon-g..._apis-google-21 | 1 | Google APIs
add-ons;addon-g..._apis-google-22 | 1 | Google APIs
add-ons;addon-g..._apis-google-23 | 1 | Google APIs
add-ons;addon-g..._apis-google-24 | 1 | Google APIs
add-ons;addon-g...e_gdk-google-19 | 11 | Glass Development Kit Preview
build-tools;19.1.0 | 19.1.0 | Android SDK Build-Tools 19.1
build-tools;20.0.0 | 20.0.0 | Android SDK Build-Tools 20
build-tools;21.1.2 | 21.1.2 | Android SDK Build-Tools 21.1.2
build-tools;22.0.1 | 22.0.1 | Android SDK Build-Tools 22.0.1
build-tools;23.0.1 | 23.0.1 | Android SDK Build-Tools 23.0.1
build-tools;23.0.2 | 23.0.2 | Android SDK Build-Tools 23.0.2
build-tools;23.0.3 | 23.0.3 | Android SDK Build-Tools 23.0.3
build-tools;24.0.0 | 24.0.0 | Android SDK Build-Tools 24
build-tools;24.0.1 | 24.0.1 | Android SDK Build-Tools 24.0.1
build-tools;24.0.2 | 24.0.2 | Android SDK Build-Tools 24.0.2
build-tools;24.0.3 | 24.0.3 | Android SDK Build-Tools 24.0.3
build-tools;25.0.0 | 25.0.0 | Android SDK Build-Tools 25
build-tools;25.0.1 | 25.0.1 | Android SDK Build-Tools 25.0.1
build-tools;25.0.2 | 25.0.2 | Android SDK Build-Tools 25.0.2
build-tools;25.0.3 | 25.0.3 | Android SDK Build-Tools 25.0.3
build-tools;26.0.0 | 26.0.0 | Android SDK Build-Tools 26
build-tools;26.0.1 | 26.0.1 | Android SDK Build-Tools 26.0.1
build-tools;26.0.2 | 26.0.2 | Android SDK Build-Tools 26.0.2
build-tools;26.0.3 | 26.0.3 | Android SDK Build-Tools 26.0.3
build-tools;27.0.0 | 27.0.0 | Android SDK Build-Tools 27
build-tools;27.0.1 | 27.0.1 | Android SDK Build-Tools 27.0.1
build-tools;27.0.2 | 27.0.2 | Android SDK Build-Tools 27.0.2
build-tools;27.0.3 | 27.0.3 | Android SDK Build-Tools 27.0.3
build-tools;28.0.0 | 28.0.0 | Android SDK Build-Tools 28
build-tools;28.0.1 | 28.0.1 | Android SDK Build-Tools 28.0.1
build-tools;28.0.2 | 28.0.2 | Android SDK Build-Tools 28.0.2
build-tools;28.0.3 | 28.0.3 | Android SDK Build-Tools 28.0.3
build-tools;29.0.0 | 29.0.0 | Android SDK Build-Tools 29
build-tools;29.0.1 | 29.0.1 | Android SDK Build-Tools 29.0.1
build-tools;29.0.2 | 29.0.2 | Android SDK Build-Tools 29.0.2
cmake;3.10.2.4988404 | 3.10.2 | CMake 3.10.2.4988404
cmake;3.6.4111459 | 3.6.4111459 | CMake 3.6.4111459
docs | 1 | Documentation for Android SDK
emulator | 29.2.1 | Android Emulator
extras;android;gapid;1 | 1.0.3 | GPU Debugging tools
extras;android;gapid;3 | 3.1.0 | GPU Debugging tools
extras;android;m2repository | 47.0.0 | Android Support Repository
extras;google;auto | 1.1 | Android Auto Desktop Head Unit...
extras;google;g...e_play_services | 49 | Google Play services
extras;google;instantapps | 1.9.0 | Google Play Instant Developmen...
extras;google;m2repository | 58 | Google Repository
extras;google;m...t_apk_expansion | 1 | Google Play APK Expansion library
extras;google;market_licensing | 1 | Google Play Licensing Library
extras;google;simulators | 1 | Android Auto API Simulators
extras;google;webdriver | 2 | Google Web Driver
extras;intel;Ha...ecution_Manager | 7.5.1 | Intel x86 Emulator Accelerator...
extras;m2reposi...ut-solver;1.0.0 | 1 | Solver for ConstraintLayout 1.0.0
extras;m2reposi...er;1.0.0-alpha4 | 1 | com.android.support.constraint...
extras;m2reposi...er;1.0.0-alpha8 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ver;1.0.0-beta1 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ver;1.0.0-beta2 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ver;1.0.0-beta3 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ver;1.0.0-beta4 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ver;1.0.0-beta5 | 1 | Solver for ConstraintLayout 1....
extras;m2reposi...ut-solver;1.0.1 | 1 | Solver for ConstraintLayout 1.0.1
extras;m2reposi...ut-solver;1.0.2 | 1 | Solver for ConstraintLayout 1.0.2
extras;m2reposi...nt-layout;1.0.0 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...ut;1.0.0-alpha4 | 1 | com.android.support.constraint...
extras;m2reposi...ut;1.0.0-alpha8 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...out;1.0.0-beta1 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...out;1.0.0-beta2 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...out;1.0.0-beta3 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...out;1.0.0-beta4 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...out;1.0.0-beta5 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...nt-layout;1.0.1 | 1 | ConstraintLayout for Android 1...
extras;m2reposi...nt-layout;1.0.2 | 1 | ConstraintLayout for Android 1...
lldb;2.0 | 2.0.2558144 | LLDB 2.0
lldb;2.1 | 2.1.2852477 | LLDB 2.1
lldb;2.2 | 2.2.3271982 | LLDB 2.2
lldb;2.3 | 2.3.3614996 | LLDB 2.3
lldb;3.0 | 3.0.4213617 | LLDB 3.0
lldb;3.1 | 3.1.4508709 | LLDB 3.1
ndk-bundle | 20.1.5948944 | NDK
ndk;16.1.4479499 | 16.1.4479499 | NDK (Side by side) 16.1.4479499
ndk;17.2.4988734 | 17.2.4988734 | NDK (Side by side) 17.2.4988734
ndk;18.1.5063045 | 18.1.5063045 | NDK (Side by side) 18.1.5063045
ndk;19.2.5345600 | 19.2.5345600 | NDK (Side by side) 19.2.5345600
ndk;20.0.5594570 | 20.0.5594570 | NDK (Side by side) 20.0.5594570
ndk;20.1.5948944 | 20.1.5948944 | NDK (Side by side) 20.1.5948944
patcher;v4 | 1 | SDK Patch Applier v4
platform-tools | 29.0.5 | Android SDK Platform-Tools
platforms;android-10 | 2 | Android SDK Platform 10
platforms;android-11 | 2 | Android SDK Platform 11
platforms;android-12 | 3 | Android SDK Platform 12
platforms;android-13 | 1 | Android SDK Platform 13
platforms;android-14 | 4 | Android SDK Platform 14
platforms;android-15 | 5 | Android SDK Platform 15
platforms;android-16 | 5 | Android SDK Platform 16
platforms;android-17 | 3 | Android SDK Platform 17
platforms;android-18 | 3 | Android SDK Platform 18
platforms;android-19 | 4 | Android SDK Platform 19
platforms;android-20 | 2 | Android SDK Platform 20
platforms;android-21 | 2 | Android SDK Platform 21
platforms;android-22 | 2 | Android SDK Platform 22
platforms;android-23 | 3 | Android SDK Platform 23
platforms;android-24 | 2 | Android SDK Platform 24
platforms;android-25 | 3 | Android SDK Platform 25
platforms;android-26 | 2 | Android SDK Platform 26
platforms;android-27 | 3 | Android SDK Platform 27
platforms;android-28 | 6 | Android SDK Platform 28
platforms;android-29 | 3 | Android SDK Platform 29
platforms;android-7 | 3 | Android SDK Platform 7
platforms;android-8 | 3 | Android SDK Platform 8
platforms;android-9 | 2 | Android SDK Platform 9
sources;android-15 | 2 | Sources for Android 15
sources;android-16 | 2 | Sources for Android 16
sources;android-17 | 1 | Sources for Android 17
sources;android-18 | 1 | Sources for Android 18
sources;android-19 | 2 | Sources for Android 19
sources;android-20 | 1 | Sources for Android 20
sources;android-21 | 1 | Sources for Android 21
sources;android-22 | 1 | Sources for Android 22
sources;android-23 | 1 | Sources for Android 23
sources;android-24 | 1 | Sources for Android 24
sources;android-25 | 1 | Sources for Android 25
sources;android-26 | 1 | Sources for Android 26
sources;android-27 | 1 | Sources for Android 27
sources;android-28 | 1 | Sources for Android 28
sources;android-29 | 1 | Sources for Android 29
system-images;a...ult;armeabi-v7a | 5 | ARM EABI v7a System Image
system-images;a...-10;default;x86 | 5 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 6 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 6 | Google APIs Intel x86 Atom Sys...
system-images;a...ult;armeabi-v7a | 2 | ARM EABI v7a System Image
system-images;a...ult;armeabi-v7a | 5 | ARM EABI v7a System Image
system-images;a...-15;default;x86 | 5 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 6 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 6 | Google APIs Intel x86 Atom Sys...
system-images;a...ult;armeabi-v7a | 6 | ARM EABI v7a System Image
system-images;a...16;default;mips | 1 | MIPS System Image
system-images;a...-16;default;x86 | 6 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 6 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 6 | Google APIs Intel x86 Atom Sys...
system-images;a...ult;armeabi-v7a | 6 | ARM EABI v7a System Image
system-images;a...17;default;mips | 1 | MIPS System Image
system-images;a...-17;default;x86 | 4 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 6 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 6 | Google APIs Intel x86 Atom Sys...
system-images;a...ult;armeabi-v7a | 5 | ARM EABI v7a System Image
system-images;a...-18;default;x86 | 4 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 6 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 6 | Google APIs Intel x86 Atom Sys...
system-images;a...ult;armeabi-v7a | 5 | ARM EABI v7a System Image
system-images;a...-19;default;x86 | 6 | Intel x86 Atom System Image
system-images;a...pis;armeabi-v7a | 38 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 38 | Google APIs Intel x86 Atom Sys...
system-images;a...-tv;armeabi-v7a | 3 | Android TV ARM EABI v7a System...
system-images;a...;android-tv;x86 | 3 | Android TV Intel x86 Atom Syst...
system-images;a...ult;armeabi-v7a | 4 | ARM EABI v7a System Image
system-images;a...-21;default;x86 | 5 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 5 | Intel x86 Atom_64 System Image
system-images;a...pis;armeabi-v7a | 30 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 30 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 30 | Google APIs Intel x86 Atom_64 ...
system-images;a...;android-tv;x86 | 3 | Android TV Intel x86 Atom Syst...
system-images;a...ult;armeabi-v7a | 2 | ARM EABI v7a System Image
system-images;a...-22;default;x86 | 6 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 6 | Intel x86 Atom_64 System Image
system-images;a...pis;armeabi-v7a | 24 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 24 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 24 | Google APIs Intel x86 Atom_64 ...
system-images;a...-tv;armeabi-v7a | 12 | Android TV ARM EABI v7a System...
system-images;a...;android-tv;x86 | 19 | Android TV Intel x86 Atom Syst...
system-images;a...ear;armeabi-v7a | 6 | Android Wear ARM EABI v7a Syst...
system-images;a...ndroid-wear;x86 | 6 | Android Wear Intel x86 Atom Sy...
system-images;a...ult;armeabi-v7a | 6 | ARM EABI v7a System Image
system-images;a...-23;default;x86 | 10 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 10 | Intel x86 Atom_64 System Image
system-images;a...pis;armeabi-v7a | 31 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 31 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 31 | Google APIs Intel x86 Atom_64 ...
system-images;a...;android-tv;x86 | 20 | Android TV Intel x86 Atom Syst...
system-images;a...fault;arm64-v8a | 7 | ARM 64 v8a System Image
system-images;a...ult;armeabi-v7a | 7 | ARM EABI v7a System Image
system-images;a...-24;default;x86 | 8 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 8 | Intel x86 Atom_64 System Image
system-images;a..._apis;arm64-v8a | 25 | Google APIs ARM 64 v8a System ...
system-images;a...pis;armeabi-v7a | 25 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 25 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 25 | Google APIs Intel x86 Atom_64 ...
system-images;a...s_playstore;x86 | 19 | Google Play Intel x86 Atom Sys...
system-images;a...;android-tv;x86 | 14 | Android TV Intel x86 Atom Syst...
system-images;a...-cn;armeabi-v7a | 4 | China version of Android Wear ...
system-images;a...oid-wear-cn;x86 | 4 | China version of Android Wear ...
system-images;a...ear;armeabi-v7a | 3 | Android Wear ARM EABI v7a Syst...
system-images;a...ndroid-wear;x86 | 3 | Android Wear Intel x86 Atom Sy...
system-images;a...-25;default;x86 | 1 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 1 | Intel x86 Atom_64 System Image
system-images;a..._apis;arm64-v8a | 16 | Google APIs ARM 64 v8a System ...
system-images;a...pis;armeabi-v7a | 16 | Google APIs ARM EABI v7a Syste...
system-images;a...google_apis;x86 | 16 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 16 | Google APIs Intel x86 Atom_64 ...
system-images;a...s_playstore;x86 | 9 | Google Play Intel x86 Atom Sys...
system-images;a...;android-tv;x86 | 12 | Android TV Intel x86 Atom Syst...
system-images;a...oid-wear-cn;x86 | 4 | China version of Android Wear ...
system-images;a...ndroid-wear;x86 | 4 | Android Wear Intel x86 Atom Sy...
system-images;a...-26;default;x86 | 1 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 1 | Intel x86 Atom_64 System Image
system-images;a...google_apis;x86 | 14 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 14 | Google APIs Intel x86 Atom_64 ...
system-images;a...s_playstore;x86 | 7 | Google Play Intel x86 Atom Sys...
system-images;a...;android-tv;x86 | 7 | Android TV Intel x86 Atom Syst...
system-images;a...-27;default;x86 | 1 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 1 | Intel x86 Atom_64 System Image
system-images;a...google_apis;x86 | 9 | Google APIs Intel x86 Atom Sys...
system-images;a...s_playstore;x86 | 3 | Google Play Intel x86 Atom Sys...
system-images;a...;android-tv;x86 | 8 | Android TV Intel x86 Atom Syst...
system-images;a...oid-wear-cn;x86 | 3 | China version of Wear OS Intel...
system-images;a...ndroid-wear;x86 | 3 | Wear OS Intel x86 Atom System ...
system-images;a...-28;default;x86 | 4 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 4 | Intel x86 Atom_64 System Image
system-images;a...google_apis;x86 | 10 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 9 | Google APIs Intel x86 Atom_64 ...
system-images;a...s_playstore;x86 | 9 | Google Play Intel x86 Atom Sys...
system-images;a...laystore;x86_64 | 8 | Google Play Intel x86 Atom_64 ...
system-images;a...-29;default;x86 | 7 | Intel x86 Atom System Image
system-images;a...;default;x86_64 | 7 | Intel x86 Atom_64 System Image
system-images;a...google_apis;x86 | 9 | Google APIs Intel x86 Atom Sys...
system-images;a...gle_apis;x86_64 | 9 | Google APIs Intel x86 Atom_64 ...
system-images;a...s_playstore;x86 | 8 | Google Play Intel x86 Atom Sys...
system-images;a...laystore;x86_64 | 8 | Google Play Intel x86 Atom_64 ...
system-images;a...;android-tv;x86 | 1 | Android TV Intel x86 Atom Syst...
tools | 26.1.1 | Android SDK Tools
Available Updates:
ID | Installed | Available
------- | ------- | -------
extras;google;google_play_services | 40.0.0 | 49
extras;google;m2repository | 51.0.0 | 58
extras;intel;Hardware_Accelerated_Execution_Manager | 7.2.0 | 7.5.1
platform-tools | 28.0.0 | 29.0.5
platforms;android-27 | 1 | 3
tools | 25.2.5 | 26.1.1
done
~~~