any thoughts on this in intellij IDE Error: Could ...
# announcements
c
any thoughts on this in intellij IDE Error: Could not find or load main class FooKt Caused by: java.lang.ClassNotFoundException: FooKt
k
Looks like your configuration for main class does not match up with what your code is. Do you have a Kotlin file with
package ….
up top and containing
class Foo
in it? And if so, does your configuration specify that same package+Foo as the entrypoint? (I usually work in Android Studio and not IntelliJ but that’s what I think the issue is for you)