Install SDK for Android in eclipse offline

I want to install Android on my computer, but using sdk it cannot download packages due to my speed, I think. I searched Google many times for several days, but could not find the result. I found a page that showed how to use the abyss server for installation, but lost it due to a power outage and could not find it again. If someone can share the link or tutorial on installing android sdk and use it with eclipse, that would be a big help.

+1
source share
2 answers

I think you should try the step in the process of creating the Android development environment.

I hope you already have Eclipse. If you do not have it, then get it from here, and the latest Eclipse is version 3.7. Eclipse for Java

Step 2. Since you have a problem with internet speed, try downloading the zip file with the latest ADT tool. Android ADT Plugin Use this ADT Zip in this SO -> SO link install . after adding zip to Eclipse, you need an internet connection.

STEP 3: now for the Android SDK you can download this android-sdk_r17-windows.zip, which are small in size from this developer's site → Android SDK

when you put this Zip on your computer and unzip it and download one of the Android SDK platform from this site → SDK platform crash .

STEp 4: Now that you get one of the Platform SDKs, you need to put it in an example for my PC. I have the following path.

E:\Android_development\android-sdk\platforms\put here your SDK Platform Folder. 

Your path to android-sdk may be different.

STEP 5: Remember to specify the path of your Android SDK here in Eclipse. To get the path, go here to Eclipse

Window → Settings → Android is now in the SDK location window Provide the location of the Android SDK. Something like that

  E:\Android_development\android-sdk 
+4
source

Go to http://dl-ssl.google.com/android/repository/repository.xml and select the sdk platform version that you want to install, and then copy the appropriate android-x_rxx-windows/linux/macosx.zip that you want to customize

 http://dl-ssl.google.com/android/repository/android-x_rxx.zip 
  • After downloading it, go to your SDK-Installation-Path ( C:\Program Files (x86)\Android\android-sdk\platforms on Windows). Create a folder called android x and extract all the zip contents to the android x folder.

  • Close the SDK manager and open it. You will see that the Android SDK platform will be shown as installed.

This guide explains this in detail.

How to install Android sdk platform offline

0
source

All Articles