TransformInput
interface TransformInput
com.android.build.api.transform.TransformInput |
The input to a Transform.
It is mostly composed of a list of JarInput
and a list of DirectoryInput
.
Summary
Public methods |
|
---|---|
abstract MutableCollection<DirectoryInput!> |
Returns a collection of |
abstract MutableCollection<JarInput!> |
Returns a collection of |
Public methods
getDirectoryInputs
@NonNull abstract fun getDirectoryInputs(): MutableCollection<DirectoryInput!>
Returns a collection of DirectoryInput
.
getJarInputs
@NonNull abstract fun getJarInputs(): MutableCollection<JarInput!>
Returns a collection of JarInput
.