Kashyap Kotak
Kashyap Kotak

Reputation: 1938

Error: null value in entry: blameLogFolder=null

I am getting this error in Android Studio while doing a Gradle build.

Error:null value in entry: blameLogFolder=null

Upvotes: 25

Views: 17246

Answers (4)

Adam R. Turner
Adam R. Turner

Reputation: 139

What worked for me was downgrading like Cabezas said, and then reupgrading after I deleted all the subdirectories in the most current version directory of gradle which can be found here: ..\AndroidStudioProjects\<YourProjectName>\.gradle

Upvotes: 1

Nick Stampoulis
Nick Stampoulis

Reputation: 51

If deleting the .gradle directory isn't working (just like me), then try clean project and re-build the project.

Upvotes: 1

Cabezas
Cabezas

Reputation: 10737

It appears to be a bug in gradle. I toke another way, downdate of gradle version, I changed two lines:

In build.gradle(project)

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

And gradle-wrapper.properties

distributionUrl = https\://services.gradle.org/distributions/gradle-2.14.1-all.zip

Upvotes: 2

KCK
KCK

Reputation: 2033

Delete the .gradle directory in root project folder and rebuild the project. I suppose that's a gradle bug.

Upvotes: 102

Related Questions