Java.lang.ClassNotFoundException after Android studio update

后端 未结 7 2026
半阙折子戏
半阙折子戏 2020-12-03 22:48

I updated to Android Studio 2.1 from the stable channel. As soon as I did that I am getting ClassNotFoundException to my login class, which is declared in the manifest for l

7条回答
  •  一整个雨季
    2020-12-03 23:21

    Try cleaning gradle cache & build by running each line in the terminal:

    gradlew --stop
    gradlew cleanBuildCache
    gradlew clean
    

提交回复
热议问题