bundle

abstract fun <D : Dependency?> bundle(bundle: Iterable<out D>)
abstract fun <D : Dependency?> bundle(bundle: Provider<out Iterable<out D>>)
abstract fun <D : Dependency?> bundle(bundle: ProviderConvertible<out Iterable<out D>>)

Add a bundle.

Parameters

bundle

the bundle to add


abstract fun <D : Dependency?> bundle(bundle: Iterable<out D>, configuration: Action<out Any>)
abstract fun <D : Dependency?> bundle(bundle: Provider<out Iterable<out D>>, configuration: Action<out Any>)
abstract fun <D : Dependency?> bundle(bundle: ProviderConvertible<out Iterable<out D>>, configuration: Action<out Any>)

Add a bundle and configure them.

Parameters

bundle

the bundle to add

configuration

an action to configure each dependency in the bundle