s0nerik
s0nerik

Reputation: 691

Gradle project refresh failed after Android Studio update

Here's the output:

11:57:04 AM Gradle 'KeddreaderProject' project refresh failed: Cause: org.gradle.internal.service.ServiceLocator.([Ljava/lang/ClassLoader;)V:

I've tried to remove .gradle folder, but it doesn't help. What can be the problem?

Edit: I get this error even when I try to import any other project on Ubuntu 13.10. But on Windows everything works (with the the same version of Android Studio) well.

Upvotes: 43

Views: 116653

Answers (13)

MEGHA RAMOLIYA
MEGHA RAMOLIYA

Reputation: 1917

  • Go to Terminal and type clearw Gradle
  • Press Enter
  • Goto file menu, choose Invalidate Caches /Restart
  • Press Yes

Upvotes: 0

Bhaumik Belani
Bhaumik Belani

Reputation: 671

I tried everything, nothing worked.then I tried the following steps and it worked

  1. close Android studio

  2. go to "My Documents"

  3. delete the following folders a).android, b).androidstudio1.5, c).gradle

  4. start Android studio and enjoy...

It seems stupid but works...

Upvotes: 11

Dushyanth Kandiah
Dushyanth Kandiah

Reputation: 716

  1. Close Android Studio
  2. Go to C:\Users\Username
  3. delete the .gradle folder

That's it you are done

Upvotes: -2

Harshit Sharma
Harshit Sharma

Reputation: 302

SDK wasn't downloaded

so turned on the internet connection and after restarting the Android Studio

it showed a pop up to download 800mb data click on yes and issue gets resolved

Upvotes: 0

D.Snap
D.Snap

Reputation: 1780

Make sure that nothing is interfering with your app files (specially in Windows), in my case this problem arise due to a text editor that was holding some XML file and Android Studio wasn't able to modify it.

Upvotes: 1

Syed Danish Haider
Syed Danish Haider

Reputation: 1384

Use this in project.gradle:

buildscript {
    repositories 
    {
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.0'
    }
}

allprojects {
    repositories {
        mavenCentral()
    }
}

Upvotes: 1

WarrenFaith
WarrenFaith

Reputation: 57672

Most people do not read the comments so to summarize (Thanks to @Industrial-antidepressant and @wrecker):

As suggested in a bug ticket you should try the following:

  1. Close Android Studio
  2. go to android-studio/plugins/gradle/lib
  3. Delete (or better move them somewhere to have a backup) all gradle-*-1.8 files
  4. Start Android Studio again and rebuild/refresh.

It should work. Make sure to star the above bug ticket to get informed.

Little tip: Try the new compile setting Settings -> Compiler -> Gradle and activate the third in-process build for a speed up. Depending on your project setting you might want to select the first one as well. With that my project build time reduced to 2-4 seconds (before 20+ seconds).

Upvotes: 23

Karoshi
Karoshi

Reputation: 29

  1. Go to C://Users//
  2. Remove .AndroidStudio2.x
  3. Open Android Studio and config for initialization again.

Upvotes: 0

Although this has been answered a long time ago, I had the same problem with an app after updating to

Gradle 2.1.2

The solution I found (on top of the one given by @WarrenFaith was to:

File -> Synchronize

This solved all the errors generated by the Gradle update.

Upvotes: 1

pgp
pgp

Reputation: 89

This might be too late to answer. But this may help someone.

In my case there was problem of JDK path.

I just set proper JDK path for Android Studio 2.1

File -> Project Structure -> From Left Side Panel "SDK Location" -> JDK Location -> Click to select JDK Path

Upvotes: 2

Darius
Darius

Reputation: 12052

Check the Gradle home path after the update to version 1.5. It should be ../gradle-2.8.

enter image description here

Upvotes: 26

dinesharjani
dinesharjani

Reputation: 555

File -> Invalidate Caches / Restart -> Invalidate and Restart worked for me.

Upvotes: 20

user3783791
user3783791

Reputation: 17

Close your project, and then import project. That work for me. It's a simply way.

good luck.

Upvotes: -2

Related Questions