How do I set up Android Studio to work completely offline?

AndroidAndroid Studio

Android Problem Overview


I have very slow bandwidth, so I'm trying to keep all the required files on the local machine to work with Android Studio completely offline. When I click on "New Project" it always tries to download a file named gradle-1.6-bin.zip which I downloaded and tried to install locally via the plugin manager but it gives me an error:

>fail to load plugin descriptor from file gradle-1.6-bin.zip

So what other files do I need to download and how do I install them properly to work offline with Android Studio?

Android Solutions


Solution 1 - Android

Android Studio 0.4.0 now includes support for offline:

http://tools.android.com/recent/androidstudio040released

"You can now open the Compiler > Gradle options and enable Offline mode, which will tell Gradle to ignore update-to-date checks"

Updated Nov 2018: Now you can Open preferences, then search for "offline" and in the results select gradle and click "Offline work"

Solution 2 - Android

I'm using Android Studio 0.5.4 (Mavericks).

>Preferences → Gradle → Global Gradle Settings → Offline work

Solution 3 - Android

Android Studio Version < 3.6:

For Windows:

File -> Settings ->Build, Execution,Deployment -> Build Tools -> Gradle

For Mac OS:

Preferences ->Build, Execution,Deployment -> Build Tools -> Gradle

Check/UnCheck Offline work checkbox as per your need.

Android Studio Version >= 3.6:

follow steps in the image:

enter image description here

Solution 4 - Android

OK guys I finally overcame this problem. Here is the solution:

  1. Download gradle-1.6-bin.zip for offline use.

  2. Paste it in the C:\Users\username\.gradle directory.

  3. Open Android Studio and click on the "Create New Project" option and you will not get this error any more while offline.

    You might get some other errors like this:

    Don't worry, just ignore it. Your project has been created.

  4. So now click on "Import Project" and go to the path C:\Users\username\AndroidStudioProjects and open your project and you are done.

Solution 5 - Android

Android Studio 1.3.1 has neither

Gradle > Global Gradle settings > Offline work

nor a

Compiler

menu. To access the compiler menu, go to :

File > Settings > Build, Execution & Deployment > Compiler > Compiler

and de-select Configure on demand

The above still uses data but is faster, I was able to load images and maps. However, in addition, if you want to be completely offline, you need to do the following:

 File -> Settings ->Build, Execution,Deployment -> Build Tools -> Gradle -> 

check Offline work

Click the OK button.

For Android Studio 2.0 it is the same procedure.

Solution 6 - Android

Just as an assist if you go with Android Studio 0.4.x offline mode (because this thread is one of the main ones that google throws up when querying this issue).

From Alex Ruiz (Google+):

> If you specify dependency versions using "+" (e.g. 0.8.+) Gradle (not > Android Studio) will check that you have the latest version of such > dependency periodically (every 24 hours,) even in offline mode

You need to take the plus out.

Solution 7 - Android

On Android 0.5.1 you can find the offline option in the File / Settings / Gradle (in the Project Settings section)/ Offline work

Solution 8 - Android

Not sure if it was removed before, I heard it was kinda buggy in 0.5.8 but in AS 0.5.9 the settings is there: >Gradle > Global Gradle settings > Offline work

Solution 9 - Android

For enabling Offline mode Android Studio Version Above 3.6, refer the following answer.

https://stackoverflow.com/a/64180290/4324288

Solution 10 - Android

You can enable from File->Build, Execution, Deployment->Build Tools-> Gradle-> Offline Work.

Solution 11 - Android

File > Settings > Build, Execution, Deployment > Gradle > Offline work

Solution 12 - Android

for a complete offline android studio 3.5.0 installation - you need to download all these below components

android studio, gradle, android gradle plugin and sdk.

here is a detailed step by step Stackoverflow answer for the question

https://stackoverflow.com/questions/28359851/how-to-install-android-studio-full-offline/60191428#60191428

Solution 13 - Android

It seems as though gradle was not installed for me. Going to Android/Sdk/tools/templates/gradle/wrapper and running ./gradlew tasks --debug has resulted in it downloading.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionavirkView Question on Stackoverflow
Solution 1 - AndroidbkurziusView Answer on Stackoverflow
Solution 2 - Androiduser238638View Answer on Stackoverflow
Solution 3 - AndroidWajidView Answer on Stackoverflow
Solution 4 - AndroidavirkView Answer on Stackoverflow
Solution 5 - AndroidiOSAndroidWindowsMobileAppsDevView Answer on Stackoverflow
Solution 6 - Androidm12lrpvView Answer on Stackoverflow
Solution 7 - AndroidGenmaView Answer on Stackoverflow
Solution 8 - AndroidEric LabelleView Answer on Stackoverflow
Solution 9 - AndroidAmal Dev S IView Answer on Stackoverflow
Solution 10 - AndroidShiv BuyyaView Answer on Stackoverflow
Solution 11 - AndroidAmanView Answer on Stackoverflow
Solution 12 - AndroidjimonstackView Answer on Stackoverflow
Solution 13 - AndroidRichardView Answer on Stackoverflow