Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Downloading the Android support library from command line

How do you download the Android support library via the command line?

For example:

echo y | android update sdk --no-ui --filter "android-19"
like image 501
tyler Avatar asked May 02 '14 20:05

tyler


1 Answers

android command is deprecated now

You can use sdkmanager instead like so:

sdkmanager --install "extras;android;m2repository"
like image 191
Deepak Avatar answered Nov 09 '22 04:11

Deepak