mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-06 10:47:25 +01:00
20 lines
388 B
Plaintext
20 lines
388 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(platform(kotlinx.coroutines.bom))
|
||
|
implementation(kotlinx.bundles.coroutines)
|
||
|
}
|