Hi all :wave:! Does Kotlin 1.5.10 on Android 23 de...
# android
m
Hi all 👋! Does Kotlin 1.5.10 on Android 23 depend on Java 8 APIs at a lower level? I am stitching together an experimental Android/100% Kotlin project playground with the Android/Kotlin and JetPack stack without the technical legacy and I have stumbled upon this question. Is it mandatory to include Java 8 desugaring in a pure Kotlin Android project targeting minSdkLevel 23? The full Java 8 support was only added in Android 24, but I don’t plan to use the “new” Java 8 APIs. Thanks!
note that if you use a lower target jvm, you can't use libraries such as kotlinx.coroutines that are compiled targeting java 8 now
👍 1
m
I see. I’ve read. Coroutines are a must have, that makes it a must have in this case. Thank you for the quick and accurate answer.