mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-11 08:28:52 +01:00
e578f4ca93
- Run Checkstyle with gradle to make it easier for users - No longer needs different configuration for new code - Exclude current violations - Fix some violations that somehow couldn't be specified in the exclusion file - Print SpotBugs/Lint/Checkstly violations in GitHub format - Then the CI run gets annotated on the web UI
28 lines
834 B
Groovy
28 lines
834 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
|
|
android {
|
|
namespace "de.danoeh.antennapod.ui.common"
|
|
|
|
lint {
|
|
disable 'VectorPath'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":storage:preferences")
|
|
implementation project(":ui:i18n")
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
|
implementation "androidx.viewpager2:viewpager2:$viewPager2Version"
|
|
implementation "com.google.android.material:material:$googleMaterialVersion"
|
|
implementation "androidx.core:core-splashscreen:1.0.0"
|
|
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
}
|