public interface HasIosResources
HasResourcesSourceSet
Modifier and Type | Method and Description |
---|---|
default IosResourceSet |
getResources()
Defines the iOS resources of this component.
|
default void |
resources(Action<? super IosResourceSet> action)
Configures the iOS resources of this component using the specified configuration action.
|
default void |
resources(groovy.lang.Closure<Void> closure)
Configures the iOS resources of this component using the specified configuration closure.
|
default IosResourceSet getResources()
By default, the source set contains all files in the directory src/componentName/resources
, where componentName represent this component's name, i.e. main or test.
IosResourceSet
default void resources(Action<? super IosResourceSet> action)
action
- the configuration action, must not be nullgetResources()
default void resources(@DelegatesTo(value=IosResourceSet.class,strategy=1) groovy.lang.Closure<Void> closure)
closure
- the configuration closure, must not be nullgetResources()