mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
refactor: Move Manga class to domain
module
This commit is contained in:
parent
9f7fa90f04
commit
114776bc53
122 changed files with 479 additions and 452 deletions
|
@ -1,3 +1,5 @@
|
|||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
|
||||
plugins {
|
||||
alias(androidx.plugins.library)
|
||||
alias(kotlinx.plugins.android)
|
||||
|
@ -23,8 +25,17 @@ dependencies {
|
|||
implementation(projects.domain)
|
||||
implementation(projects.i18n)
|
||||
implementation(projects.presentation.core)
|
||||
implementation(projects.source.api) // Access to SManga
|
||||
|
||||
implementation(androidx.glance.appwidget)
|
||||
|
||||
implementation(libs.coil3)
|
||||
}
|
||||
|
||||
tasks {
|
||||
withType<KotlinCompile> {
|
||||
compilerOptions.freeCompilerArgs.addAll(
|
||||
"-opt-in=coil3.annotation.ExperimentalCoilApi",
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue