AndroidComponentsExtension
interfaceAndroidComponentsExtension<DslExtensionT : CommonExtension<*, *, *, *>, VariantBuilderT : VariantBuilder, VariantT : Variant>
com.android.build.api.extension.AndroidComponentsExtension |
Summary
Public methods |
|
---|---|
abstract Unit |
beforeVariants(selector: VariantSelector = selector().all(), callback: (VariantBuilderT) -> Unit) Method to register a callback to be called with VariantBuilderT instances that satisfies the selector. |
abstract Unit |
beforeVariants(selector: VariantSelector, callback: Action<VariantBuilderT>) Action based version of beforeVariants above. |
abstract Unit |
finalizeDSl(callback: Action<DslExtensionT>) Action based version of finalizeDsl above. |
abstract Unit |
finalizeDsl(callback: (DslExtensionT) -> Unit) API to customize the DSL Objects programmatically before the beforeVariants is called. |
open Unit |
onVariants(selector: VariantSelector = selector().all(), callback: (VariantT) -> Unit) Allow for registration of a callback to be called with variant instances of type VariantT once the list of com.android.build.api.artifact.Artifact has been determined. |
abstract Unit |
onVariants(selector: VariantSelector = selector().all(), callback: Action<VariantT>) Action based version of onVariants above. |
abstract Unit |
registerExtension(dslExtension: DslExtension, configurator: (variantExtensionConfig: VariantExtensionConfig<VariantT>) -> VariantExtension) Register an Android Gradle Plugin DSL extension. |
abstract VariantSelector |
selector() Creates a VariantSelector instance that can be configured to reduce the set of ComponentBuilder instances participating in the beforeVariants and onVariants callback invocation. |
Properties |
|
---|---|
abstract AndroidPluginVersion |
The version of the Android Gradle Plugin currently in use. |
abstract SdkComponents |
Provides access to underlying Android SDK and build-tools components like adb. |
Public methods
beforeVariants
abstract fun beforeVariants(
selector: VariantSelector = selector().all(),
callback: (VariantBuilderT) -> Unit
): Unit
Method to register a callback to be called with VariantBuilderT instances that satisfies the selector. The callback will be called as soon as the VariantBuilderT instance has been created but before any com.android.build.api.artifact.Artifact has been determined, therefore the build flow can still be changed when the callback is invoked.
At this stage, access to the DSL objects is disallowed, use afterDsl method to programmatically access the DSL objects before the VariantBuilderT object is built.
Example without selection:
androidComponents { beforeVariants { println("Called with variant : ${'$'}name") } }
Example with selection:
androidComponents { val debug = selector().withBuildType("debug") beforeVariants(debug) { println("Called with variant : ${'$'}name") } }
Parameters | |
---|---|
selector: VariantSelector = selector().all() | VariantSelector instance to select which instance of VariantBuilderT are of interest. By default, all instances are of interest. |
callback: (VariantBuilderT) -> Unit | lambda to be called with each instance of VariantBuilderT of interest. |
beforeVariants
abstract fun beforeVariants(
selector: VariantSelector,
callback: Action<VariantBuilderT>
): Unit
Action based version of beforeVariants above.
finalizeDSl
abstract fun finalizeDSl(callback: Action<DslExtensionT>): Unit
Action based version of finalizeDsl above.
finalizeDsl
abstract fun finalizeDsl(callback: (DslExtensionT) -> Unit): Unit
API to customize the DSL Objects programmatically before the beforeVariants is called.
Example of a build type creation:
androidComponents.finalizeDsl { extension -> extension.buildTypes.create("extra") }
The list of variants will be finalized after all finalizeDsl Callbacks and cannot be altered in the other APIs like beforeVariants or onVariants.
onVariants
open fun onVariants(
selector: VariantSelector = selector().all(),
callback: (VariantT) -> Unit
): Unit
Allow for registration of a callback to be called with variant instances of type VariantT once the list of com.android.build.api.artifact.Artifact has been determined.
At this stage, access to the DSL objects is disallowed and access to the VariantBuilderT instance is limited to read-only access.
Because the list of artifacts (including private ones) is final, one cannot change the build flow anymore as org.gradle.api.Tasks are now expecting those artifacts as inputs. However users can modify such artifacts by replacing or transforming them, see com.android.build.api.artifact.Artifacts for details.
Code executing in the callback also has access to the VariantT information which is used to configure org.gradle.api.Task inputs (for example, the buildConfigFields). Such information represented as org.gradle.api.provider.Property can still be modified ensuring that all org.gradle.api.Tasks created by the Android Gradle Plugin use the updated value.
onVariants
abstract fun onVariants(
selector: VariantSelector = selector().all(),
callback: Action<VariantT>
): Unit
Action based version of onVariants above.
registerExtension
abstract fun registerExtension(
dslExtension: DslExtension,
configurator: (variantExtensionConfig: VariantExtensionConfig<VariantT>) -> VariantExtension
): Unit
Register an Android Gradle Plugin DSL extension.
Please see Gradle documentation first at : https://docs.gradle.org/current/userguide/custom_plugins.html#sec:getting_input_from_the_build
A lambda must be provided to create and configure the variant scoped object that will be stored with the Android Gradle Plugin com.android.build.api.variant.Variant instance.
Variant Scoped objects should use org.gradle.api.provider.Property for its mutable state to allow for late binding. (see com.android.build.api.variant.Variant for examples).
Parameters | |
---|---|
dslExtension: DslExtension | the DSL extension configuration. |
configurator: (variantExtensionConfig: VariantExtensionConfig<VariantT>) -> VariantExtension | a lambda to create a variant scoped object. The lambda is provided with the VariantExtensionConfig that can be used to retrieve the VariantT instance as well as DSL extensions registered with DslExtension |
Return | |
---|---|
an sub type of VariantExtension instance that will be stored with the VariantT instance and can be retrieved by Variant.getExtension API. |
selector
abstract fun selector(): VariantSelector
Creates a VariantSelector instance that can be configured to reduce the set of ComponentBuilder instances participating in the beforeVariants and onVariants callback invocation.
Return | |
---|---|
VariantSelector to select the variants of interest. |
Properties
pluginVersion
abstract val pluginVersion: AndroidPluginVersion
The version of the Android Gradle Plugin currently in use.
sdkComponents
abstract val sdkComponents: SdkComponents
Provides access to underlying Android SDK and build-tools components like adb.
Return | |
---|---|
SdkComponents to access Android SDK used by Gradle. |