looking in gradle kotlin dsl code ``` fun Project....
# announcements
m
looking in gradle kotlin dsl code
Copy code
fun Project.`android`(configure: com.android.build.gradle.LibraryExtension.() -> Unit): Unit =
    extensions.configure("android", configure)
why the android wrapped in ``?
r
Is "android" a keyword in language there? If not I think it should work without ``
v
I imagine it’s because it’s auto-generated and “put all the names in `” can be a good default policy there
you can call it without the “`” though