Hello,
I want to migrate a Java library into a KMP library. A key step is to first convert *.java to *.kt. I tried using Android Studio's "Code | Convert Java File to Kotlin File", but the converted Kotlin files have many compilation errors, mainly null safety issues. For example, the converted class properties are nullable types, but the calling places do not add "?." or "!!".
Are there any good solutions?