brandon
07/28/2017, 6:52 PM/**
* 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)