Class AndroidCodeQualityExtension
- java.lang.Object
-
- io.freefair.gradle.plugins.android.quality.AndroidCodeQualityExtension
-
- Direct Known Subclasses:
SourceSetBasedCodeQualityExtension,VariantBasedCodeQualityExtension
public class AndroidCodeQualityExtension extends Object
Copy ofCodeQualityExtensionwithout source sets.- See Also:
CodeQualityExtension
-
-
Constructor Summary
Constructors Constructor Description AndroidCodeQualityExtension()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)FilegetReportsDir()The directory where reports will be generated.StringgetToolVersion()The version of the code quality tool to be used.inthashCode()booleanisIgnoreFailures()Whether to allow the build to continue if there are warnings.voidsetIgnoreFailures(boolean ignoreFailures)Whether to allow the build to continue if there are warnings.voidsetReportsDir(File reportsDir)The directory where reports will be generated.voidsetToolVersion(String toolVersion)The version of the code quality tool to be used.StringtoString()
-
-
-
Method Detail
-
getToolVersion
public String getToolVersion()
The version of the code quality tool to be used.
-
setToolVersion
public void setToolVersion(String toolVersion)
The version of the code quality tool to be used.
-
isIgnoreFailures
public boolean isIgnoreFailures()
Whether to allow the build to continue if there are warnings. Example: ignoreFailures = true
-
setIgnoreFailures
public void setIgnoreFailures(boolean ignoreFailures)
Whether to allow the build to continue if there are warnings. Example: ignoreFailures = true
-
getReportsDir
public File getReportsDir()
The directory where reports will be generated.
-
setReportsDir
public void setReportsDir(File reportsDir)
The directory where reports will be generated.
-
canEqual
protected boolean canEqual(Object other)
-
-