Gradle sync failed: Could not create parent directory for lock file

CJay picture CJay · Jun 4, 2019 · Viewed 12.5k times · Source

I checked out a git repository in android studio, but I'm in trouble with Gradle sync failed error.

When project wants to build, the android studio raise an error like as following:

Gradle sync failed: Could not create parent directory for lock file 
C:\Users\username\.gradle\wrapper\dists \gradle-4.10.1- 
all\455itskqi2qtf0v2sja68alqd\gradle-4.10.1-all.zip.lck
  • I saw some answers to the other almost same problems, but none of them help.
  • Also I deleted cashes in .gradle directory according above path, but it does not work.

How can I solve this problem?

I appreciate you to solve this problem, thanks.

Answer

Ranjan Kumar picture Ranjan Kumar · Jun 5, 2019

Run this following command:

gradlew clean
gradlew assembleDebug

If this does not work use following command.

gradlew --update-locks assembleDebug