Search code examples
androidandroid-studioandroid-gradle-plugin

No cached version of gradle


I am getting this error when syncing gradle. I am pretty new to gradle so can't figure out what is the problem exactly?

Error:No cached version of com.android.tools.build:gradle:0.10.1 available for offline mode.

When I go to Setting->Gradle, I have offline mode ticked off and using default gradle wrapper.


Solution

  • In my case I also had an additional "offline switch" to the one in Gradle.

    Go to:

    File > Settings > Build, Execution, Deployment > Compiler
    

    There I've removed the --offline in Command-line Options. Earlier I was trying to speed up Android Studio a bit and this was one of the changes I had made.

    Everything was fine after a restart then (and I have re-enabled both offline parts).