Reputation: 4312
I want to update my downloaded Android SDK, at present Eclipse can't able to load SDK manager so that I can pick API and download latest one as well options exist in SDK manager for updating other useful things.
So what to do for update now?
This is my current downloaded and working SDK structure, there is not direct access to SDK manager:
So what to do for updating Android SDK?
Upvotes: 1
Views: 17505
Reputation: 607
The sdkmanager is located for you in the following location :
sdk/tools/bin/
Now open your terminal and go to the above directory and run the following command to update all the installed packages
sdkmanager --update [options]
And it will update all of your installed packages. To update specific packages you can refer this link : https://developer.android.com/studio/command-line/sdkmanager
For windows users sdkmanager is located in the following location :
C:\Users\your_user_name\AppData\Local\Android\sdk\tools\bin
Upvotes: 6