mirror of
https://github.com/jellyfin/jellyfin-androidtv.git
synced 2024-11-23 05:49:50 +00:00
40 lines
677 B
Plaintext
40 lines
677 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
namespace = "org.jellyfin.preference"
|
|
compileSdk = libs.versions.android.compileSdk.get().toInt()
|
|
|
|
defaultConfig {
|
|
minSdk = libs.versions.android.minSdk.get().toInt()
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
|
|
lint {
|
|
lintConfig = file("$rootDir/android-lint.xml")
|
|
abortOnError = false
|
|
}
|
|
|
|
testOptions.unitTests.all {
|
|
it.useJUnitPlatform()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Kotlin
|
|
implementation(libs.kotlinx.coroutines)
|
|
|
|
// Logging
|
|
implementation(libs.timber)
|
|
|
|
// Testing
|
|
testImplementation(libs.kotest.runner.junit5)
|
|
testImplementation(libs.kotest.assertions)
|
|
testImplementation(libs.mockk)
|
|
}
|