Package com.android.builder.model
Interface NativeArtifact
public interface NativeArtifact
A native artifact.
Represent an native library.
-
Method Summary
Modifier and TypeMethodDescriptiongetAbi()Returns the target ABI of the artifact.Returns the name of the task used to generate the artifact output.Returns the folders container headers exported for the library.Returns the group this artifact is associated with.getName()Returns the name of the artifact.Returns the output file with debug symbols unstripped.Returns the files that needs to be deployed with getOutputFile to be executed on device.Returns the source files.Returns the name of the target that builds this artifact.Returns the toolchain used for compilation.
-
Method Details
-
getName
Returns the name of the artifact. -
getToolChain
Returns the toolchain used for compilation. -
getGroupName
Returns the group this artifact is associated with. -
getAssembleTaskName
Returns the name of the task used to generate the artifact output. -
getSourceFiles
Returns the source files. -
getExportedHeaders
Returns the folders container headers exported for the library. -
getAbi
Returns the target ABI of the artifact. -
getTargetName
Returns the name of the target that builds this artifact. -
getOutputFile
Returns the output file with debug symbols unstripped. -
getRuntimeFiles
Returns the files that needs to be deployed with getOutputFile to be executed on device.
-