Migrating an android gradle project to a KMP one, ...
# compose
s
Migrating an android gradle project to a KMP one, and I realize that I was using:
Copy code
android {
 defaultConfig {
  vectorDrawables.useSupportLibrary = true
 }
}
But I can't find the way to apply the same when doing:
Copy code
kotlin {
 androidLibrary {
  defaultConfig... <-- unresolved
 }
}
Is there a way for me to configure this here?
I may want to still use the
id("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