Exceptions during startup in android studio Indexing time

I run my Android studio after closing. it was working fine until closing but now when launching Android Studio "Indexing" completed full progress and indexing started again this process is continuous Endless level

indexing ....... than, scanning files into an index ....

again

indexing ....... than, scanning files into an index ...

gives a runtime exception:

RuntimeException: java.io.IOException:writePrevChunkAddress:61889832,61981366,C:\Users\oxiloindia\.AndroidStudioPreview 2.1\system\index\trigram.index\Trigram.Index.values 

how to stop this endless work with the Android Studio process so that I can start my project

+7
android android-studio runtimeexception
source share
2 answers

I had the same problem. Changing my project location and rebooting Android studio did not help me. Here is the way, I solved this problem - Click File> Invalid Caches / Reboot

+22
source share

I solved this problem with this trick, hope it will be useful for others ....

  Go to your Project Location and Delete `.gradle` file. Change your project location and restart android studio. So `.gradle` automatically create again & your caches would be modified. 

Your project is ready to run without this problem.

0
source share

All Articles