interestingly, im also seeing this int he accessor...
# gradle
b
interestingly, im also seeing this int he accessors.kt file
Copy code
/**
 * Retrieves the [android][com.android.build.gradle.AppExtension] project extension.
 *
 * `android` is not accessible in a type safe way because:
 * - `com.android.build.gradle.AppExtension` is not available
 */
val Project.`android`: Any get() =
    extensions.getByName("android")

/**
 * Configures the [android][com.android.build.gradle.AppExtension] project extension.
 *
 * `android` is not accessible in a type safe way because:
 * - `com.android.build.gradle.AppExtension` is not available
 */
fun Project.`android`(configure: Any.() -> Unit): Unit =
    extensions.configure("android", configure)