Hey :wave:. Did I understand it correctly that wit...
# announcements
r
Hey 👋. Did I understand it correctly that with Kotlin
1.4.0
the explicit
kotlin-reflect
dependency is not needed anymore (in some situations?) as it's included in the standard runtime library?
u
Kotlin-reflect is still needed if you’re using Kotlin reflection heavily. But some small operations have indeed been supported in the stdlib in 1.4, such as
KType.javaType
,
KClass.simpleName/qualifiedName/isInstance/cast
r
Thank you 👍