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

AndroidAndroid Studio

Android Problem Overview


I just started using Android Studio 1.3 sdk 24 and it has worked fine until today. I get this error message about cache.properties and I delete that cache file but now I am getting this error message:

>Error:C:\Users\user1.gradle\caches\2.4\scripts\asLocalRepo15_dhjxrnvsgiyg1ow3dfj4myl7\InitScript\initscript\cache.properties (The system cannot find the file specified)

I try file/invalidate caches/restart.. and rebuild project but am still getting this error message. How do I fix it?

Android Solutions


Solution 1 - Android

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.

Solution 2 - Android

Reinstall Android Studio again is not an option!

To fix the problem:

> cache.properties (The system cannot find the file specified)

go to :

 C:\Users\[User]\.gradle\caches\

Delete folders \2.4 and \2.8

introducir la descripción de la imagen aquí

Restart Android Studio!.

Solution 3 - Android

You don't have to reinstall Android Studio or no need to delete all .gradle folder.

I am reinstalled the latest version of Android Studio and still I faced that problem. It caused my to rename the "Android Projects" folder on my desktop in my case.

The only thing that you have to do:

> 1-Navigate to C:\Users\user_name.gradle\caches\2.4 or (2.8 if error in it otherwise) > > 2-Copy the folder "2.4" or "2.8" and paste it somewhere safe just in case anything went wrong you will place it back > > 3-Delete this error folder from the directory C:\Users\user.gradle\caches\2.4\ (or \2.8) > > 4-Close the Android studio & restart it.

During restart it sync your project & Android Studio will generate new cache files.

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

Solution 4 - Android

I have the same problem, I just delete .gradle from C:\Users\user\.gradle\caches\2.4\ and from my application too.

Of course close Android Studio and start Android Studio again.

Solution 5 - Android

No need to reinstall anything.

Just delete the 2.4 and 2.8 folder located at C:\Users\user\.gradle\cachesdirectory and reopen android studio. It will generate new cash files so now the build should be successful.

Solution 6 - Android

I found the solution to my question, but I do not know whether it is the optimal solution:

I deleted all .gradle folders in user library and reinstalled android and then it worked.

Solution 7 - Android

Easy solution. Go ahead and create an empty cache.properties file under the path specified in the error log. The error should then disappear.

Solution 8 - Android

As said in the above examples i have tried resolving with extra steps:

  1. Navigate to the respective folder C:\Users\user.gradle\caches\2.14.1\
  2. Copy both the folders "scripts" and "scripts-remapped" into a safe place.
  3. Now, DELETE BOTH THE FOLDERS "scripts" and "scripts-remapped" in the location C:\Users\user.gradle\caches\2.14.1\
  4. Finally, try to sync the gradle.
  5. Android Studio will ask to Upgrade the Gradle plugin. So click on Upgrade the gradle.

(If not try to Restart the Android Studio IDE completely.)

Finally, it is done for me...!!!

Solution 9 - Android

Deleting the "scripts" folder and rebuilding the project will solve this problem.

Solution 10 - Android

I don't know why a great developer as Google can't manage this issue by them selves it is very easy to delete the cached folder and regenerate it programmatically. Any way just navigate to C:\Users\user.gradle\caches\ and open the latest version folder, then delete the scripts folder. Go to android studio and sync project.

Solution 11 - Android

Removing the {project-path}/.gradle/buildOutputCleanupcache.properties.lock

Work for me..

Solution 12 - Android

Go to the folder indicated in the error message. Delete the cache.properties.lock file.

Solution 13 - Android

I download gradle and changed path of gradle from C drive to D drive and fixed it

enter image description here

Solution 14 - Android

I have faced the same problem and i am using Android studio 3.0.1,

Well, Don't Reinstall the Android studio there is no need of reinstalling the Whole software

Do the following step and hope this will solve your problem.....

step - 1. Go to C:\Users\*user_name_of_your_system*\.gradle\caches\2.x/

step - 2. Delete this folder scripts and scripts-remapped

step - 3. Than in your android studio, Go to Tools/Android/Sync Project with Gradle Files

Done :)

if still problem is not solved than -

step - 4. Delete both the Build folder and than repeat step- 3

enter image description here

Solution 15 - Android

The quickest and more accurate approach to this problem is to remove from your project's .gradle/<version>/buildOutputCleanup folder the file cache.properties.lock This will do the trick. After that, just rebuild or sync your project.

Solution 16 - Android

As mentioned above,I faced same problem: Try this

  1. Remove scripts and scripts-remmaped folders in C:\Users\user.gradle\caches\2.14.1\
  2. restart android studio

THIS WORKED FOR ME.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmaxView Question on Stackoverflow
Solution 1 - AndroidSalam El-BannaView Answer on Stackoverflow
Solution 2 - AndroidJorgesysView Answer on Stackoverflow
Solution 3 - AndroidTaiful TomalView Answer on Stackoverflow
Solution 4 - AndroiddestinydzView Answer on Stackoverflow
Solution 5 - AndroidSabeehView Answer on Stackoverflow
Solution 6 - AndroidmaxView Answer on Stackoverflow
Solution 7 - AndroidManoj ShresthaView Answer on Stackoverflow
Solution 8 - AndroidPrakash PalanisamyView Answer on Stackoverflow
Solution 9 - AndroidKaisar HossainView Answer on Stackoverflow
Solution 10 - AndroiditxdevView Answer on Stackoverflow
Solution 11 - AndroidHeriberto RiveraView Answer on Stackoverflow
Solution 12 - AndroidAharon ManneView Answer on Stackoverflow
Solution 13 - AndroidRajesh NasitView Answer on Stackoverflow
Solution 14 - AndroidRavi VaniyaView Answer on Stackoverflow
Solution 15 - AndroidLaurent DodaView Answer on Stackoverflow
Solution 16 - AndroidGheyath MustafaView Answer on Stackoverflow