Rejecting re-init on previously-failed class java.lang.Class: java.lang.NoClassDefFoundError

前端 未结 6 1728
自闭症患者
自闭症患者 2020-12-24 10:30

I see an information log in my console that looks like an error. It is printed from \"art\", which is generally associated to memory but I need help understanding what it me

6条回答
  •  Happy的楠姐
    2020-12-24 11:02

    java.lang.NoClassDefFoundError indicates, that something was found at compiletime but not at runtime. Maybe you just have to add it to the Classpath.

    Right click on your project and select -> Compile Module, and then re-start the project and it should work again.

提交回复
热议问题