public interface ModelBuilderParameter
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getAbiName()
If not null then this is the name of the ABI to build.
|
boolean |
getShouldBuildVariant()
Whether model builder should build variants or not when building
AndroidProject. |
boolean |
getShouldGenerateSources()
Whether model builder should schedule source generation post sync or not when building
Variant. |
java.lang.String |
getVariantName()
Returns the name of the variant to build.
|
void |
setAbiName(java.lang.String abi)
Sets the ABI to build.
|
void |
setShouldBuildVariant(boolean shouldBuildVariant)
Set whether model builder should build variants or not.
|
void |
setShouldGenerateSources(boolean shouldGenerateSources)
Set whether model builder should should schedule source generation post sync or not.
|
void |
setVariantName(java.lang.String variantName)
Set the name of the variant to build.
|
boolean getShouldBuildVariant()
AndroidProject.void setShouldBuildVariant(boolean shouldBuildVariant)
shouldBuildVariant - whether model builder should build variants or not.boolean getShouldGenerateSources()
Variant.void setShouldGenerateSources(boolean shouldGenerateSources)
shouldGenerateSources - whether model builder should schedule source generation post
sync or not.@Nullable java.lang.String getVariantName()
void setVariantName(@NonNull
java.lang.String variantName)
variantName - the name of the variant to build.@Nullable java.lang.String getAbiName()
void setAbiName(@NonNull
java.lang.String abi)
abi - the ABI to build.