Intent to Kotlin written Activity from Java written Activity

I tried to start an Kotlin written Activity from my Java activity like this:

startActivity(new Intent(MainActivity.this, AboutActivity.class));

But I always get a ClassNotFoundException.

What can I do?

When the AboutActivity (Kotlin) was still in Java it worked…