2023-01-22 16:12:29 +01:00
|
|
|
plugins {
|
2024-04-06 11:07:11 +06:00
|
|
|
id("mihon.library")
|
2023-01-22 16:12:29 +01:00
|
|
|
kotlin("android")
|
2023-12-24 17:38:01 -05:00
|
|
|
kotlin("plugin.serialization")
|
2023-01-22 16:12:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "tachiyomi.domain"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-31 20:17:27 +06:00
|
|
|
kotlin {
|
|
|
|
compilerOptions {
|
|
|
|
freeCompilerArgs.add("-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-22 16:12:29 +01:00
|
|
|
dependencies {
|
2024-01-23 09:35:58 -03:00
|
|
|
implementation(projects.sourceApi)
|
2024-01-29 15:11:28 +06:00
|
|
|
implementation(projects.core.common)
|
2023-01-22 10:37:13 -05:00
|
|
|
|
2023-02-20 19:02:38 -05:00
|
|
|
implementation(platform(kotlinx.coroutines.bom))
|
|
|
|
implementation(kotlinx.bundles.coroutines)
|
2023-12-24 17:38:01 -05:00
|
|
|
implementation(kotlinx.bundles.serialization)
|
2023-02-20 19:02:38 -05:00
|
|
|
|
2023-11-25 22:31:26 -05:00
|
|
|
implementation(libs.unifile)
|
|
|
|
|
2023-03-07 22:38:02 -05:00
|
|
|
api(libs.sqldelight.android.paging)
|
|
|
|
|
2024-09-02 21:54:53 +06:00
|
|
|
compileOnly(libs.compose.stablemarker)
|
|
|
|
|
2023-04-15 09:51:52 -04:00
|
|
|
testImplementation(libs.bundles.test)
|
2023-04-30 04:14:49 +02:00
|
|
|
testImplementation(kotlinx.coroutines.test)
|
|
|
|
}
|