Hey guys, I'm trying to migrate all of our Android...
# android
o
Hey guys, I'm trying to migrate all of our Android build.gradle files to build.gradle.kts. I'm having a hard time finding the right syntaxes and names, all Android documentation only gives Groovy examples. Is there some documentation where I can find all DSL methods etc.?
How do I write this down in build.gradle.kts?
t
dynamicFeatures = listOf(":mymodule")
should work. The brackets syntax in Groovy is a shorthand for defining a list.
v
Copy code
dynamicFeatures = mutableSetOf(
        ":modulename"
    )
This is how I write it.