Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install Android Studio on a pc without internet connection? [closed]

I'd like to install Android Studio in pc which has no internet connection.

  • I have already downloaded the JDK-7 and the Android Studio using another laptop.
  • I have copied the both setup files and successfully installed JDK-7.
  • Now when i'm running android-studio setup , it requires internet connection.(step screenshot attached)

Is there any way to skip this step by downloading any other setup(exe) file ? enter image description here

After downloading all the required files (Development Studio, SDK and Platform), then when you run the Android Development Studio installation, it does not give me an option to select the previously downloaded components, but instead just goes ahead and attempts to download from the internet.

like image 737
lena Avatar asked Feb 19 '15 14:02

lena


People also ask

Can I install Android Studio offline?

Definitely YES, you can always install Android Studio with all SDK packages & Tools on an Off-line PC.

Does Android Studio require Internet to run?

Theoretically you can work offline by going to File > Settings > Build, Execution, Deployment > Gradle and checking Offline Work. You will unfortunately have to sync the project while on a working internet connection at least once to have the necessary dependencies downloaded for your project.

How do I download Android Studio on my PC?

To download the Android Studio, visit the official Android Studio website in your web browser. Click on the "Download Android Studio" option. Double click on the downloaded "Android Studio-ide.exe" file. "Android Studio Setup" will appear on the screen and click "Next" to proceed.


1 Answers

There are 3 main components to a working Android development setup:

  1. JDK (Java Development Kit) Android
  2. SDK (Android SoftwareDevelopment Kit)
  3. IDE (Integrated Development Environment)

First download all three: Download standalone JDK installer from here, and Android SDK and Android Studio from here.

Now, move the files to whichever machine you want to install your development environment on and install all of them.

The SDK comes packed with only the latest platform (21 at the time of writing) so if you need to use others, you will need to download them separately:

Platforms
• android-1.1_r1-macosx

• android-1.1_r1-linux

• android-1.5_r04-windows

• android-1.5_r04-macosx

• android-1.5_r04-linux

• android-1.6_r03-linux

• android-1.6_r03-macosx

• android-1.6_r03-windows

• android-2.0_r01-linux

• android-2.0_r01-macosx

• android-2.0_r01-windows

• android-2.0.1_r01-linux

• android-2.0.1_r01-macosx

• android-2.0.1_r01-windows

• android-2.1_r03-linux

• android-2.2_r03-linux

• android-2.3.1_r02-linux

• android-2.3.3_r02-linux

• android-3.0_r02-linux

• android-3.1_r03-linux

• android-3.2_r01-linux

Samples
• samples-2.1_r01-linux

• samples-2.2_r01-linux

• samples-2.3_r01-linux

• samples-2.3.3_r01-linux

• samples-3.0_r01-linux

• samples-3.1_r01-linux

• samples-3.2_r01-linux

• samples-14_r02

• samples-15_r02

• samples-16_r01

• samples-17_r01

• samples-18_r01

Build Tools
• build-tools_r17-windows

• build-tools_r17-linux

• build-tools_r17-macosx

• build-tools_r18.0.1-windows

• build-tools_r18.0.1-linux

• build-tools_r18.0.1-macosx

• build-tools_r18.1-windows

• build-tools_r18.1-linux

• build-tools_r18.1-macosx

• build-tools_r18.1.1-windows

• build-tools_r18.1.1-linux

• build-tools_r18.1.1-macosx

• build-tools_r19-windows

• build-tools_r19-linux

• build-tools_r19-macosx

• build-tools_r19.0.1-windows

• build-tools_r19.0.1-linux

• build-tools_r19.0.1-macosx

• build-tools_r19.0.2-windows

• build-tools_r19.0.2-linux

• build-tools_r19.0.2-macosx

• build-tools_r19.0.3-windows

• build-tools_r19.0.3-linux

• build-tools_r19.0.3-macosx

• build-tools_r19.1-windows

• build-tools_r19.1-linux

• build-tools_r19.1-macosx

Sources
• sources-14_r01

• sources-15_r02

• sources-16_r02

• sources-17_r01

• sources-18_r01

• sources-19_r02

Hope it helps.

like image 135
nana Avatar answered Nov 01 '22 10:11

nana