api / org.gradle.nativeplatform / BuildTypeContainer

BuildTypeContainer

@Incubating interface BuildTypeContainer : NamedDomainObjectContainer<BuildType>

A container of BuildTypes.

Inherited Functions

configure

abstract fun configure(configureClosure: Closure<Any>): NamedDomainObjectContainer<T>

Allows the container to be configured, creating missing objects as they are referenced.

TODO: example usage

create

abstract fun create(name: String): T

Creates a new item with the given name, adding it to this container.

abstract fun create(name: String, configureClosure: Closure<Any>): T

Creates a new item with the given name, adding it to this container, then configuring it with the given closure.

abstract fun create(name: String, configureAction: Action<in T>): T

Creates a new item with the given name, adding it to this container, then configuring it with the given action.

maybeCreate

abstract fun maybeCreate(name: String): T

Looks for an item with the given name, creating and adding it to this container if it does not exist.

Extension Properties

ext

val BuildTypeContainer.ext: ExtraPropertiesExtension

Retrieves the ext extension.

Extension Functions

ext

fun BuildTypeContainer.ext(configure: ExtraPropertiesExtension.() -> Unit): Unit

Configures the ext extension.