When converting from `build.gradle` to `build.grad...
# gradle
m
When converting from
build.gradle
to
build.gradle.kts
, it looks like autocomplete in IDEA doesn't work until a first gradle sync is successful. Generated accessors are missing but also more regular things are underlined in red. So what I do is usually comment all of the build.gradle.kts and then uncomment parts as I fix them. Is there a better way to do this ? I feel like even if my
android
block is wrong, the
dependencies
could be parsed correctly ?
o
no, there is no special handling for scripts. They're mostly just top level `main()`s, except for plugins & buildscript blocks. everything after that needs to compile together