Reputation: 41
I do job in an area where there is no internet connection. I wanted to develop Android apps using Android Studio, but for the Gradle build it needs an internet connection. Is there a way in which I can completely setup Android Studio to work offline?
I have tried many answers on Stack Overflow but none worked. Else, suggest me some other ways to make Android apps completely offline.
Upvotes: 4
Views: 785
Reputation: 1310
Before moving to area where you don't have an internet connection, sync project to download all dependencies. Next gradle providing options, Offline work.
File -> Settings -> Build, Execution, Deployment -> Gradle and turn on option Offline Work. That is it.
Upvotes: 5