mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-29 17:49:03 +03:00
639d56364f
* chore(deps): update kotlin and compose compiler to v2 * Update .gitignore * Fix build --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com>
30 lines
655 B
Text
30 lines
655 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(kotlinx.immutables)
|
|
|
|
implementation(platform(libs.coil.bom))
|
|
implementation(libs.coil.core)
|
|
|
|
api(libs.injekt.core)
|
|
}
|