Cache.properties (The system cannot find the file specified)

You don’t have to delete all .gradle folders and no need to reinstall Android Studio.

I have the latest version of Android Studio and I faced that problem, the only thing that worked for me is to:

  1. Navigate to C:\Users\user\.gradle\caches\2.x\

  2. Copy the folder scripts , scripts-remapped and paste it somewhere safe just in case anything went wrong you will place it back

  3. Delete this folder scripts and scripts-remapped from the directory C:\Users\user\.gradle\caches\2.x\

  4. Sync Project with Gradle Files and you are done.

enter image description here

When you sync your project Android Studio will generate new cache files.

You also need to delete buildOutputCleanup.lock from projectLocation/.gradle/buildOutputCleanup in case the above 4 steps do not work out.

It worked for me I hope it will work for you.

Leave a Comment