Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to install android studio full offline

I need to install android studio on many PCs. Is there any way to install android studio latest version offline by downloading all the offline files just once? Most of the PCs are running windows 8.1 / 8 / 7.

like image 719
Ripon Kumar Saha Avatar asked Feb 06 '15 06:02

Ripon Kumar Saha


People also ask

Can Android Studio run offline?

Yes, Android Studio is meant to be used offline, unless you are using git and committing all your code changes to git. One other scenario when you need the internet is when trying to use some external library/API using gradle.


2 Answers

Definitely YES, you can always install Android Studio with all SDK packages & Tools on an Off-line PC. As I just did it myself.

Only thing U have to insure that you must have one PC with internet with Similar configuration as of Off-line PC(s). For example, if you have Win 7 64 bits On-Line PC, then you should have Win 7 64 bit on Off-Line PC as well. But I have not tried extensively on 64 vs 32 bit PCs.

Once You have installed Android Bundle (available on android studio website), on both On-line and Off-line PCs, you download all necessary files required to run the Android Studio properly on On-Line PC.

After that, compare the folder inside sdk folder: "C:\user\name\AppData\Local\Android\sdk " available on both PCs (On-Line & Off-Line). And where ever you feel that some files are missing copy that folder from On-Line PC and paste in Off-Line PC. Especially, you need to do this for folder : 'extras', 'tool' & 'system-images'.

After this, just ENJOY!!!

like image 90
anand kumar Avatar answered Sep 22 '22 23:09

anand kumar


in response to "The following SDK component was not installed: build-tools-21.1.1"

  • download build-tools 21.1.1 from http://dl-ssl.google.com/android/repository/build-tools_r21.1.1-windows.zip
  • unzip it under your sdk /build-tools folder (e.g. %UserProfile%\AppData\Local\Android\sdk\build-tools\ for Windows)
  • you'll get then /build-tools/android-5.0/ right beside /build-tools/21.1.2/
  • restart Android Studio

NB: all credit goes to the community http://code.google.com/p/android/issues/detail?id=82789#c5

like image 21
arhak Avatar answered Sep 20 '22 23:09

arhak