3

I have a problem: My android studio is analyzing infinitely:

I have tried:

  • uninstalling Android Studio
  • Invalidate cashes / Restart
  • restart my computer.

build.gradle (Project)

enter image description here

build.gradle (Module)

enter image description here

Main Activity (Analyzing text top right corner)

enter image description here

What can I do?

zhangxaochen
  • 32,744
  • 15
  • 77
  • 108

4 Answers4

6

You just need to Upgrade the latest kotlin version.

  1. Upgrade the dependency in the project's build.gradle file.

     classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10"
    
  2. Upgrade the dependency in the app's build.gradle file.

     implementation "org.jetbrains.kotlin:kotlin-stdlib:1.5.10"
    
SagarDihora
  • 136
  • 4
1

Finally, I fully deleted my android studio with all connected files using this answers and then reinstalled its new stable (the same 4.2.1. version). The problem was solved.

1

I was also facing the same issues. I Follow below step: Close Project Delete all “.idea” & ".gradle” folder

0

Want to solve this problem, you need to download the kotlin plugin with the version 202-1.5.0-release-764-AS8194.7 at this website https://plugins.jetbrains.com/plugin/6954-kotlin/versions, then install it.

郑少鹏
  • 21
  • 2