What early level Android API can I use Kotlin with?

I think the question is pretty clear, but what is the earliest API level I can configure on Kotlin?

+7
kotlin android-api-levels
source share
1 answer

Actually, any API level.

This is because Kotlin is compiled into bytecode for the JVM 6 platform, which is supported at all levels of the Android API. Thus, if you are not using any new Android API in Kotlin code, it does not require any specific API level.

+12
source share

All Articles