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.?
Orhan Tozan
03/06/2020, 10:58 PM
How do I write this down in build.gradle.kts?
t
tseisel
03/07/2020, 9:13 AM
dynamicFeatures = listOf(":mymodule")
should work. The brackets syntax in Groovy is a shorthand for defining a list.