Class AndroidCodeQualityExtension
- java.lang.Object
-
- io.freefair.gradle.plugins.android.quality.AndroidCodeQualityExtension
-
- Direct Known Subclasses:
SourceSetBasedCodeQualityExtension
,VariantBasedCodeQualityExtension
public class AndroidCodeQualityExtension extends Object
Copy ofCodeQualityExtension
without 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 boolean
canEqual(Object other)
boolean
equals(Object o)
File
getReportsDir()
The directory where reports will be generated.String
getToolVersion()
The version of the code quality tool to be used.int
hashCode()
boolean
isIgnoreFailures()
Whether to allow the build to continue if there are warnings.void
setIgnoreFailures(boolean ignoreFailures)
Whether to allow the build to continue if there are warnings.void
setReportsDir(File reportsDir)
The directory where reports will be generated.void
setToolVersion(String toolVersion)
The version of the code quality tool to be used.String
toString()
-
-
-
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)
-
-