I think the question is pretty clear but what's the earliest API level I can target on Kotlin?
Asked
Active
Viewed 485 times
7
-
1I think you can use whatever API level you want, unless you use some Kotlin library which requires a higher level. – marstran Jun 09 '17 at 11:52
-
@marstran That is brilliant – warsong Jun 09 '17 at 11:54
1 Answers
12
Actually, any API level.
That's because Kotlin is compiled into bytecode for JVM 6 platform, which is supported in all Android API levels. So, unless you use any of the newer Android API in your Kotlin code, it does not require any specific API level.

hotkey
- 140,743
- 39
- 371
- 326