mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-14 20:39:59 -05:00
264030d6ec
Fixes some build issues
31 lines
684 B
Text
31 lines
684 B
Text
plugins {
|
|
id("mihon.library")
|
|
id("mihon.library.compose")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.presentation.widget"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.core.common)
|
|
implementation(projects.domain)
|
|
implementation(projects.presentationCore)
|
|
api(projects.i18n)
|
|
|
|
implementation(compose.glance)
|
|
implementation(libs.material)
|
|
|
|
implementation(kotlinx.immutables)
|
|
|
|
implementation(platform(libs.coil.bom))
|
|
implementation(libs.coil.core)
|
|
|
|
api(libs.injekt)
|
|
}
|