AntennaPod/common.gradle

120 lines
3.1 KiB
Groovy
Raw Normal View History

android {
2024-04-09 22:33:52 +02:00
compileSdk 34
defaultConfig {
2022-12-18 13:48:31 +01:00
minSdk 21
2024-04-09 22:33:52 +02:00
targetSdk 34
vectorDrawables.useSupportLibrary true
vectorDrawables.generatedDensities = []
testApplicationId "de.danoeh.antennapod.core.tests"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
2021-06-17 08:37:31 +02:00
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard.cfg"
2022-07-18 08:15:09 +02:00
resValue "string", "app_name", "AntennaPod"
}
debug {
2022-07-18 08:15:09 +02:00
resValue "string", "app_name", "AntennaPod Debug"
}
}
packagingOptions {
2023-04-01 23:16:53 +02:00
resources {
excludes += ["META-INF/LICENSE.txt",
"META-INF/NOTICE.txt",
"META-INF/CHANGES",
"META-INF/README.md"]
}
}
compileOptions {
2024-03-04 22:17:44 +01:00
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
testOptions {
animationsDisabled = true
unitTests {
includeAndroidResources = true
}
}
2023-04-01 23:16:53 +02:00
lint {
disable "GradleDependency", "OutdatedLibrary"
checkDependencies true
warningsAsErrors true
abortOnError true
checkGeneratedSources = true
}
2021-07-22 22:48:48 +02:00
buildFeatures {
viewBinding true
}
}
2024-02-25 13:39:44 +01:00
tasks.withType(Test).configureEach {
testLogging {
exceptionFormat "full"
events "skipped", "passed", "failed"
showStandardStreams true
displayGranularity 2
}
}
gradle.projectsEvaluated {
2024-02-25 13:39:44 +01:00
tasks.withType(JavaCompile).tap {
configureEach {
options.compilerArgs << "-Xlint"
}
}
}
apply plugin: 'com.github.spotbugs'
spotbugs {
2024-03-06 08:52:14 +01:00
toolVersion = '4.2.3'
effort = 'max'
reportLevel = 'medium'
excludeFilter = rootProject.file('config/spotbugs/exclude.xml')
ignoreFailures = true // Handled by printing task
}
2024-02-25 13:39:44 +01:00
gradle.taskGraph.whenReady { taskGraph ->
taskGraph.allTasks.each { task ->
if (task.name.toLowerCase().contains('spotbugs')) {
task.doLast {
2024-03-06 08:52:14 +01:00
def reportFile = task.project.file("build/reports/spotbugs/debug.xml")
def reportFilePlay = task.project.file("build/reports/spotbugs/playDebug.xml")
if (reportFile.exists()) {
parseSpotBugsXml(task, reportFile)
2024-02-25 13:39:44 +01:00
}
2024-03-06 08:52:14 +01:00
if (reportFilePlay.exists()) {
parseSpotBugsXml(task, reportFilePlay)
}
}
}
}
}
2024-03-06 08:52:14 +01:00
def parseSpotBugsXml(task, xmlFile) {
def slurped = new groovy.xml.XmlSlurper().parse(xmlFile)
def foundErrors = false
slurped['BugInstance'].each { bug ->
logger.error "[SpotBugs] ${bug['LongMessage']} [${bug.@'type'}]"
bug['SourceLine'].each { line ->
logger.error "[SpotBugs] ${line['Message']}"
foundErrors = true
}
}
if (foundErrors) {
throw new TaskExecutionException(task,
new Exception("SpotBugs violations were found. See output above for details."))
}
}