Updated on 2026-08-14
This commit is contained in:
parent
fdbd09cccb
commit
39a107b039
18 changed files with 367 additions and 254 deletions
|
|
@ -9,15 +9,28 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation(deps.arrow.core)
|
||||
|
||||
// region Other libraries
|
||||
api(deps.arrow.core)
|
||||
implementation(deps.jodatime)
|
||||
// endregion
|
||||
|
||||
// region Core modules
|
||||
implementation(projects.core.res)
|
||||
implementation(projects.domain.models)
|
||||
implementation(projects.domain.wallets.models)
|
||||
implementation(projects.domain.visa.models)
|
||||
implementation(projects.domain.feedback.models)
|
||||
// endregion
|
||||
|
||||
/** Testing libraries */
|
||||
testImplementation(projects.test.core)
|
||||
// region Domain
|
||||
api(projects.domain.models)
|
||||
implementation(projects.domain.visa.models)
|
||||
// endregion
|
||||
|
||||
// region Domain models
|
||||
api(projects.domain.feedback.models)
|
||||
// endregion
|
||||
|
||||
// region Tests
|
||||
testImplementation(deps.test.coroutine)
|
||||
testImplementation(deps.test.junit5)
|
||||
testImplementation(deps.test.mockk)
|
||||
// endregion
|
||||
}
|
||||
|
|
@ -1,15 +1,17 @@
|
|||
plugins {
|
||||
alias(deps.plugins.kotlin.jvm)
|
||||
alias(deps.plugins.ksp)
|
||||
alias(deps.plugins.kotlin.serialization)
|
||||
id("configuration")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
/* Other */
|
||||
implementation(deps.moshi)
|
||||
ksp(deps.moshi.kotlin.codegen)
|
||||
implementation(deps.kotlin.serialization)
|
||||
implementation(projects.domain.models)
|
||||
implementation(projects.domain.wallets.models)
|
||||
implementation(projects.domain.visa.models)
|
||||
|
||||
// region Kotlin
|
||||
api(deps.kotlin.serialization)
|
||||
// endregion
|
||||
|
||||
// region Domain models
|
||||
api(projects.domain.models)
|
||||
api(projects.domain.visa.models)
|
||||
// endregion
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue