TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Manually Download Android APIs
Chintan Rathod
Aug 29, 2013
5
k
0
1
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
Instead of downloading APIs using SDK manager, download APIs manually.
You all are aware of how to install different API versions in Android using SDK (Software Development Kit). But If you like to install it manually, this article will help you to do so.
Benefit of manually download is, you don't need to download APIs again and again if you are working with new Android Bundles.
First of all, open following link in browser
New Link for repository
https://dl-ssl.google.com/android/repository/repository-8.xml
Old Link for repository
https://dl-ssl.google.com/android/repository/repository-7.xml
This will show you following output.
Now, you can see that all information provided in XML format.
There is one link provided here. Search for
sdk:url
tag in XML file. After searching that, copy that value and make following URL pattern to download it.
Note that, you should choose
sdk:url
as per your platform which is provided in
<sdk:archive arch="any" os="any">
.
Base URL :
https://dl-ssl.google.com/android/repository/
Full URL :
https://dl-ssl.google.com/android/repository/android-16_r04.zip
You can add suffix URL as you want.
After completion of download, extract that file. This will produce one directory. You just need to place that in following directory.
path_to_android_sdk\platforms
Open your Android SDK, and check. Newer API will be shown as Installed.
Happy Coding.
Manually Download Android APIs
Next Recommended Reading
How To Download And Install Android Studio