Reputation: 861
Can I download Android system images outside android studio using the link in screenshoot. If yes How to Install it ?
The download process is blocker I cannot put it in background, and I have a poor Internet connection.
Upvotes: 0
Views: 5320
Reputation: 861
After trying to install it manualy, I found that it is possible to download the system images from direct link and extract it into sdk folder.
And this works for me on API 29
direct link used https://dl.google.com/android/repository/sys-img/google_apis/x86-29_r10.zip
Upvotes: 0
Reputation: 186
It's possible to download system images and other packages without Android Studio.
Just use command-line tool: sdkmanager
To download Android R image with Google Api for x86 architecture just use:
sdkmanager --channel=0 "system-images;android-R;google_apis;x86"
Upvotes: 2