Updated on 2026-08-14
This commit is contained in:
parent
717b8e2df2
commit
c5211efa73
15 changed files with 195 additions and 1 deletions
1
domain/swap/.gitignore
vendored
Normal file
1
domain/swap/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
31
domain/swap/build.gradle.kts
Normal file
31
domain/swap/build.gradle.kts
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
import org.gradle.kotlin.dsl.projects
|
||||
|
||||
plugins {
|
||||
alias(deps.plugins.android.library)
|
||||
alias(deps.plugins.kotlin.android)
|
||||
alias(deps.plugins.kotlin.serialization)
|
||||
id("configuration")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.tangem.domain.swap"
|
||||
}
|
||||
|
||||
|
||||
dependencies {
|
||||
|
||||
/** Domain */
|
||||
implementation(projects.domain.models)
|
||||
implementation(projects.domain.express.models)
|
||||
implementation(projects.domain.swap.models)
|
||||
implementation(projects.domain.wallets.models)
|
||||
implementation(projects.domain.tokens.models)
|
||||
|
||||
/** Util */
|
||||
implementation(projects.core.utils)
|
||||
|
||||
/** Other */
|
||||
implementation(deps.arrow.core)
|
||||
implementation(deps.kotlin.coroutines)
|
||||
|
||||
}
|
||||
1
domain/swap/models/.gitignore
vendored
Normal file
1
domain/swap/models/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
24
domain/swap/models/build.gradle.kts
Normal file
24
domain/swap/models/build.gradle.kts
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
plugins {
|
||||
alias(deps.plugins.android.library)
|
||||
alias(deps.plugins.kotlin.android)
|
||||
alias(deps.plugins.kotlin.serialization)
|
||||
id("configuration")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.tangem.domain.swap.models"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
/** Domain */
|
||||
implementation(projects.domain.models)
|
||||
implementation(projects.domain.express.models)
|
||||
implementation(projects.domain.tokens.models)
|
||||
|
||||
/** Core */
|
||||
implementation(projects.core.datasource)
|
||||
|
||||
/** Other */
|
||||
implementation(deps.jodatime)
|
||||
implementation(deps.moshi)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue