mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 17:15:09 +01:00
02864ebd60
* Move GitHub Release/App Update logic to data * Add tests for GetApplicationRelease * Review changes
35 lines
809 B
Plaintext
35 lines
809 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.domain"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":source-api"))
|
|
implementation(project(":core"))
|
|
|
|
implementation(platform(kotlinx.coroutines.bom))
|
|
implementation(kotlinx.bundles.coroutines)
|
|
|
|
api(libs.sqldelight.android.paging)
|
|
|
|
testImplementation(libs.bundles.test)
|
|
testImplementation(kotlinx.coroutines.test)
|
|
}
|
|
|
|
tasks {
|
|
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
|
)
|
|
}
|
|
}
|