Stylianos Gakis
11/21/2025, 4:01 PMandroid {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
}
But I can't find the way to apply the same when doing:
kotlin {
androidLibrary {
defaultConfig... <-- unresolved
}
}
Is there a way for me to configure this here?Stylianos Gakis
11/21/2025, 4:06 PMid("com.android.library") plugin and call the android {} block the exact same way as I did before.
That's what the sample project does here https://github.com/JetBrains/compose-multiplatform/blob/1b40a6db80c9f97859ac56c088[…]8d887307dd8cd/components/resources/demo/shared/build.gradle.kts