Do we need to include the kotlin std library in ou...
# gradle
s
Do we need to include the kotlin std library in our gradle dependencies if we're using kotlin gradle plugin? does the plugin know which std lib to load based on the jvmTarget we set in kotlinOptions? Currently the android app's minSdk is 24
c
Since Kotlin 1.4.0, the Gradle plugin will add the correct stdlib dependency for you https://kotlinlang.org/docs/whatsnew14.html#dependency-on-the-standard-library-added-by-default
🔥 2
s
Thank you for confirming 👍