Reputation: 4281
I am getting following error in gradle build.
null value in entry: otherfileoutputs=null
clean build didn't work :/ How can I fix this?
Note: my explorer.exe is crashing every now and then.
Upvotes: 20
Views: 8434
Reputation: 433
I stuck in the problem like this. What I done is Delete the .Gradle Folder From the Project File.
Then Built and Clean the Project. My Problem is resolved when I do the below method.
Delete .Gradle Folder -> Clean-> Built the project
Upvotes: 0
Reputation: 736
Try removing the .gradle folder i the project dirrectory and rebuilding the project again. This worked for me
Upvotes: 56
Reputation: 1854
See if you are passing values to the otherfileoutputs
variable
Maybe you're trying to do something with that variable but you dont have anithing inside her
Upvotes: 2