1
0
mirror of https://github.com/ultrasonic/ultrasonic synced 2025-01-21 12:46:29 +01:00
ultrasonic-app-subsonic-and.../core/library/build.gradle
2021-04-19 12:21:36 +02:00

22 lines
446 B
Groovy

apply from: bootstrap.androidModule
apply plugin: 'com.android.library'
android {
lintOptions {
baselineFile file("lint-baseline.xml")
abortOnError true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
api androidSupport.support
implementation other.timber
}