Updated on 2026-08-14
This commit is contained in:
parent
4cd1bb77a1
commit
23544541cf
15 changed files with 189 additions and 198 deletions
|
|
@ -8,42 +8,44 @@ android {
|
||||||
namespace = "com.tangem.features.send.api"
|
namespace = "com.tangem.features.send.api"
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
|
/** Kotlin */
|
||||||
|
api(deps.kotlin.coroutines)
|
||||||
|
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.analytics.models)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.analytics.models)
|
api(projects.core.ui)
|
||||||
|
implementation(projects.core.utils)
|
||||||
|
|
||||||
/** Common */
|
/** Common */
|
||||||
implementation(projects.common.ui)
|
api(projects.common.ui)
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.transaction)
|
api(projects.domain.transaction)
|
||||||
|
|
||||||
/** Domain models */
|
/** Domain models */
|
||||||
|
api(projects.domain.appCurrency.models)
|
||||||
api(projects.domain.models)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.appCurrency.models)
|
api(projects.domain.nft.models)
|
||||||
implementation(projects.domain.nft.models)
|
api(projects.domain.transaction.models)
|
||||||
implementation(projects.domain.tokens.models)
|
api(projects.domain.wallets.models)
|
||||||
implementation(projects.domain.transaction.models)
|
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
|
|
||||||
/** Compose */
|
/** Compose */
|
||||||
|
api(deps.compose.foundation)
|
||||||
implementation(deps.compose.runtime)
|
implementation(deps.compose.runtime)
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
|
|
||||||
/** Tangem */
|
/** Tangem */
|
||||||
implementation(tangemDeps.blockchain)
|
api(tangemDeps.blockchain)
|
||||||
|
|
||||||
/** Other */
|
/** Other */
|
||||||
|
api(deps.kotlin.immutable.collections)
|
||||||
|
implementation(deps.androidx.annotation)
|
||||||
implementation(deps.arrow.core)
|
implementation(deps.arrow.core)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
|
||||||
|
|
||||||
// region Tests
|
// region Tests
|
||||||
testImplementation(deps.test.coroutine)
|
testImplementation(deps.test.coroutine)
|
||||||
testImplementation(deps.test.junit5)
|
testImplementation(deps.test.junit5)
|
||||||
testImplementation(deps.test.mockk)
|
testImplementation(deps.test.mockk)
|
||||||
testImplementation(deps.test.truth)
|
testImplementation(deps.test.truth)
|
||||||
testImplementation(projects.common.test)
|
|
||||||
testImplementation(projects.domain.staking.models)
|
|
||||||
// endregion
|
// endregion
|
||||||
}
|
}
|
||||||
|
|
@ -10,16 +10,14 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
/** Kotlin */
|
||||||
|
api(deps.kotlin.coroutines)
|
||||||
|
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/** Domain models */
|
/** Domain models */
|
||||||
api(projects.domain.models)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.staking)
|
api(projects.domain.staking)
|
||||||
implementation(projects.domain.tokens.models)
|
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
|
|
||||||
/** AndroidX */
|
|
||||||
implementation(deps.androidx.fragment.ktx)
|
|
||||||
}
|
}
|
||||||
|
|
@ -11,11 +11,10 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/* Project - Core */
|
/* Project - Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/* Compose */
|
/* Compose */
|
||||||
implementation(deps.kotlin.immutable.collections)
|
api(deps.kotlin.immutable.collections)
|
||||||
implementation(deps.compose.runtime)
|
api(projects.common.routing)
|
||||||
implementation(projects.common.routing)
|
|
||||||
}
|
}
|
||||||
|
|
@ -11,11 +11,9 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Project - Core */
|
/** Project - Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/** Project - Domain */
|
/** Project - Domain */
|
||||||
api(projects.domain.models)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.tokens.models)
|
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
}
|
}
|
||||||
|
|
@ -5,7 +5,6 @@ plugins {
|
||||||
alias(deps.plugins.kotlin.android)
|
alias(deps.plugins.kotlin.android)
|
||||||
alias(deps.plugins.kotlin.kapt)
|
alias(deps.plugins.kotlin.kapt)
|
||||||
alias(deps.plugins.hilt.android)
|
alias(deps.plugins.hilt.android)
|
||||||
alias(deps.plugins.ksp)
|
|
||||||
id("configuration")
|
id("configuration")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -18,38 +17,29 @@ dependencies {
|
||||||
implementation(deps.androidx.datastore)
|
implementation(deps.androidx.datastore)
|
||||||
|
|
||||||
/** Project*/
|
/** Project*/
|
||||||
implementation(projects.core.datasource)
|
api(projects.core.datasource)
|
||||||
implementation(projects.core.utils)
|
api(projects.core.utils)
|
||||||
implementation(projects.features.swap.domain)
|
api(projects.features.swap.domain)
|
||||||
implementation(projects.features.swap.domain.models)
|
implementation(projects.domain.express.models)
|
||||||
implementation(projects.features.swap.domain.api)
|
|
||||||
|
|
||||||
/** Network */
|
/** Network */
|
||||||
implementation(deps.retrofit)
|
api(deps.moshi)
|
||||||
implementation(deps.retrofit.moshi)
|
|
||||||
implementation(deps.moshi)
|
|
||||||
implementation(deps.moshi.kotlin)
|
|
||||||
implementation(deps.arrow.core)
|
implementation(deps.arrow.core)
|
||||||
ksp(deps.moshi.kotlin.codegen)
|
implementation(deps.kotlin.coroutines)
|
||||||
kaptForObfuscatingVariants(deps.retrofit.response.type.keeper)
|
kaptForObfuscatingVariants(deps.retrofit.response.type.keeper)
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.tokens.models)
|
api(projects.domain.account)
|
||||||
implementation(projects.domain.legacy)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.walletManager)
|
api(projects.domain.txhistory)
|
||||||
implementation(projects.domain.models)
|
runtimeOnly(projects.domain.account.status)
|
||||||
implementation(projects.domain.wallets)
|
runtimeOnly(projects.domain.wallets)
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
implementation(projects.domain.transaction.models)
|
|
||||||
implementation(projects.domain.express.models)
|
|
||||||
implementation(projects.domain.account.status)
|
|
||||||
implementation(projects.domain.txhistory)
|
|
||||||
|
|
||||||
implementation(projects.libs.blockchainSdk)
|
implementation(projects.libs.blockchainSdk)
|
||||||
implementation(projects.libs.crypto)
|
implementation(projects.libs.crypto)
|
||||||
|
|
||||||
/** Data */
|
/** Data */
|
||||||
implementation(projects.data.common)
|
api(projects.data.common)
|
||||||
|
|
||||||
/** Tangem SDKs */
|
/** Tangem SDKs */
|
||||||
implementation(tangemDeps.blockchain)
|
implementation(tangemDeps.blockchain)
|
||||||
|
|
|
||||||
|
|
@ -6,14 +6,4 @@ plugins {
|
||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "com.tangem.feature.swap.domain.api"
|
namespace = "com.tangem.feature.swap.domain.api"
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
implementation(projects.features.swap.domain.models)
|
|
||||||
implementation(projects.domain.tokens.models)
|
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
implementation(projects.domain.express.models)
|
|
||||||
|
|
||||||
implementation(deps.arrow.core)
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -23,59 +23,56 @@ dependencies {
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.swap.models)
|
api(projects.domain.account.status)
|
||||||
implementation(projects.domain.swap)
|
api(projects.domain.appCurrency)
|
||||||
implementation(projects.domain.appCurrency)
|
api(projects.domain.appCurrency.models)
|
||||||
implementation(projects.domain.appCurrency.models)
|
api(projects.domain.balanceHiding)
|
||||||
implementation(projects.domain.card)
|
api(projects.domain.demo)
|
||||||
implementation(projects.domain.demo)
|
api(projects.domain.express.models)
|
||||||
implementation(projects.domain.legacy)
|
api(projects.domain.legacy)
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.quotes)
|
api(projects.domain.notifications)
|
||||||
implementation(projects.domain.staking)
|
api(projects.domain.quotes)
|
||||||
implementation(projects.domain.tokens)
|
api(projects.domain.swap)
|
||||||
implementation(projects.domain.tokens.models)
|
api(projects.domain.swap.models)
|
||||||
implementation(projects.domain.transaction)
|
api(projects.domain.tokens)
|
||||||
implementation(projects.domain.transaction.models)
|
api(projects.domain.tokens.models)
|
||||||
implementation(projects.domain.txhistory.models)
|
api(projects.domain.transaction)
|
||||||
implementation(projects.domain.wallets)
|
api(projects.domain.transaction.models)
|
||||||
implementation(projects.domain.wallets.models)
|
api(projects.domain.visa)
|
||||||
implementation(projects.domain.express.models)
|
api(projects.domain.visa.models)
|
||||||
implementation(projects.domain.account)
|
api(projects.domain.walletManager)
|
||||||
implementation(projects.domain.account.status)
|
api(projects.domain.yieldSupply)
|
||||||
implementation(projects.domain.visa)
|
|
||||||
implementation(projects.domain.visa.models)
|
|
||||||
implementation(projects.domain.balanceHiding)
|
|
||||||
implementation(projects.domain.yieldSupply)
|
|
||||||
implementation(projects.domain.notifications)
|
|
||||||
|
|
||||||
/** Common modules */
|
/** Common modules */
|
||||||
implementation(projects.common.ui)
|
api(projects.common.ui)
|
||||||
|
|
||||||
/** Core modules */
|
/** Core modules */
|
||||||
implementation(projects.core.configToggles)
|
api(projects.core.abTests)
|
||||||
|
api(projects.core.datasource)
|
||||||
|
api(projects.core.ui)
|
||||||
implementation(projects.core.utils)
|
implementation(projects.core.utils)
|
||||||
implementation(projects.core.ui)
|
|
||||||
implementation(projects.core.datasource)
|
|
||||||
implementation(projects.core.abTests)
|
|
||||||
implementation(projects.core.error)
|
implementation(projects.core.error)
|
||||||
|
|
||||||
/** Feature Apis */
|
/** Feature Apis */
|
||||||
implementation(projects.features.wallet.api)
|
api(projects.features.swap.api)
|
||||||
implementation(projects.features.swap.api)
|
|
||||||
implementation(projects.features.swap.domain.api)
|
|
||||||
implementation(projects.features.swap.domain.models)
|
|
||||||
implementation(projects.features.send.api)
|
implementation(projects.features.send.api)
|
||||||
implementation(projects.libs.blockchainSdk)
|
implementation(projects.libs.blockchainSdk)
|
||||||
|
|
||||||
/** Other Libraries **/
|
/** Other Libraries **/
|
||||||
implementation(deps.kotlin.coroutines)
|
api(deps.arrow.core)
|
||||||
implementation(deps.arrow.core)
|
api(deps.jodatime)
|
||||||
implementation(tangemDeps.blockchain)
|
api(deps.kotlin.coroutines)
|
||||||
|
api(deps.moshi)
|
||||||
|
api(tangemDeps.blockchain)
|
||||||
implementation(tangemDeps.card.core)
|
implementation(tangemDeps.card.core)
|
||||||
implementation(deps.moshi)
|
|
||||||
ksp(deps.moshi.kotlin.codegen)
|
ksp(deps.moshi.kotlin.codegen)
|
||||||
|
|
||||||
/** Test */
|
/** Test */
|
||||||
|
testRuntimeOnly(projects.domain.account)
|
||||||
|
testRuntimeOnly(projects.domain.card)
|
||||||
|
testRuntimeOnly(projects.domain.staking)
|
||||||
|
testRuntimeOnly(projects.domain.wallets)
|
||||||
|
testImplementation(deps.test.junit)
|
||||||
testImplementation(projects.test.core)
|
testImplementation(projects.test.core)
|
||||||
}
|
}
|
||||||
|
|
@ -1,30 +1,9 @@
|
||||||
plugins {
|
plugins {
|
||||||
alias(deps.plugins.android.library)
|
alias(deps.plugins.android.library)
|
||||||
alias(deps.plugins.kotlin.android)
|
alias(deps.plugins.kotlin.android)
|
||||||
alias(deps.plugins.ksp)
|
|
||||||
id("configuration")
|
id("configuration")
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "com.tangem.feature.swap.domain.models"
|
namespace = "com.tangem.feature.swap.domain.models"
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
/** Domain */
|
|
||||||
api(projects.domain.models)
|
|
||||||
implementation(projects.domain.tokens.models)
|
|
||||||
implementation(projects.domain.transaction.models)
|
|
||||||
|
|
||||||
/** Core modules */
|
|
||||||
implementation(projects.core.utils)
|
|
||||||
implementation(projects.core.datasource)
|
|
||||||
|
|
||||||
/** Other Libraries **/
|
|
||||||
implementation(tangemDeps.blockchain)
|
|
||||||
implementation(deps.kotlin.serialization)
|
|
||||||
implementation(deps.arrow.core)
|
|
||||||
implementation(deps.moshi.kotlin)
|
|
||||||
implementation(deps.jodatime)
|
|
||||||
ksp(deps.moshi.kotlin.codegen)
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -10,13 +10,10 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.visa.models)
|
api(projects.domain.visa.models)
|
||||||
|
|
||||||
/** Compose */
|
|
||||||
implementation(deps.compose.runtime)
|
|
||||||
}
|
}
|
||||||
|
|
@ -13,57 +13,68 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.analytics)
|
api(projects.core.analytics)
|
||||||
|
api(projects.core.configToggles)
|
||||||
|
api(projects.core.decompose)
|
||||||
|
api(projects.core.navigation)
|
||||||
|
api(projects.core.ui)
|
||||||
|
api(projects.core.utils)
|
||||||
implementation(projects.core.analytics.models)
|
implementation(projects.core.analytics.models)
|
||||||
implementation(projects.core.configToggles)
|
|
||||||
implementation(projects.core.decompose)
|
|
||||||
implementation(projects.core.error)
|
implementation(projects.core.error)
|
||||||
implementation(projects.core.navigation)
|
implementation(projects.core.pagination)
|
||||||
implementation(projects.core.ui)
|
|
||||||
implementation(projects.core.utils)
|
|
||||||
|
|
||||||
/** Common */
|
/** Common */
|
||||||
implementation(projects.common.ui)
|
implementation(projects.common.ui)
|
||||||
implementation(projects.common.routing)
|
implementation(projects.common.routing)
|
||||||
|
|
||||||
/** Features api */
|
/** Features api */
|
||||||
implementation(projects.features.tangempay.details.api)
|
api(projects.features.tangempay.details.api)
|
||||||
implementation(projects.features.tokenRecieve.api)
|
api(projects.features.tokenRecieve.api)
|
||||||
implementation(projects.features.txhistory.api)
|
api(projects.features.tokendetails.api)
|
||||||
implementation(projects.features.tokendetails.api)
|
api(projects.features.promoBanners.api)
|
||||||
implementation(projects.features.promoBanners.api)
|
api(projects.features.virtualAccounts.details.api) // TWI_1638_VA_MVP0_ENABLED
|
||||||
implementation(projects.features.virtualAccounts.details.api) // TWI_1638_VA_MVP0_ENABLED
|
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.balanceHiding)
|
api(projects.domain.balanceHiding)
|
||||||
|
api(projects.domain.feedback)
|
||||||
|
api(projects.domain.models)
|
||||||
|
api(projects.domain.visa)
|
||||||
implementation(projects.domain.balanceHiding.models)
|
implementation(projects.domain.balanceHiding.models)
|
||||||
implementation(projects.domain.feedback)
|
|
||||||
implementation(projects.domain.feedback.models)
|
implementation(projects.domain.feedback.models)
|
||||||
implementation(projects.domain.models)
|
|
||||||
implementation(projects.domain.onramp.models)
|
implementation(projects.domain.onramp.models)
|
||||||
implementation(projects.domain.visa)
|
|
||||||
implementation(projects.domain.visa.models)
|
implementation(projects.domain.visa.models)
|
||||||
implementation(projects.domain.wallets)
|
runtimeOnly(projects.domain.txhistory)
|
||||||
|
runtimeOnly(projects.domain.wallets)
|
||||||
|
|
||||||
/** Compose */
|
/** Compose */
|
||||||
implementation(deps.compose.coil)
|
api(deps.compose.coil)
|
||||||
|
api(deps.compose.foundation)
|
||||||
implementation(deps.compose.constraintLayout)
|
implementation(deps.compose.constraintLayout)
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
implementation(deps.decompose.ext.compose)
|
implementation(deps.decompose.ext.compose)
|
||||||
|
implementation(deps.lottie)
|
||||||
implementation(deps.lottie.compose)
|
implementation(deps.lottie.compose)
|
||||||
|
|
||||||
/** AndroidX */
|
/** AndroidX */
|
||||||
implementation(deps.androidx.activity.compose)
|
implementation(deps.androidx.activity.compose)
|
||||||
|
implementation(deps.androidx.annotation)
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.lifecycle.compose)
|
||||||
|
implementation(deps.lifecycle.runtime.ktx)
|
||||||
|
|
||||||
/** DI */
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/** Other */
|
/** Other */
|
||||||
|
api(deps.kotlin.coroutines)
|
||||||
|
implementation(deps.arrow.core)
|
||||||
|
implementation(deps.haze)
|
||||||
|
implementation(deps.jodatime)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
implementation(deps.kotlin.immutable.collections)
|
||||||
|
implementation(deps.kotlin.serialization.core)
|
||||||
|
|
||||||
/** Test */
|
/** Test */
|
||||||
testImplementation(deps.test.junit5)
|
testImplementation(deps.test.junit5)
|
||||||
|
|
|
||||||
|
|
@ -10,11 +10,11 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/** Compose */
|
/** Compose */
|
||||||
|
api(deps.compose.foundation)
|
||||||
implementation(deps.compose.runtime)
|
implementation(deps.compose.runtime)
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
}
|
}
|
||||||
|
|
@ -13,14 +13,15 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
implementation(projects.core.ui)
|
||||||
|
implementation(projects.core.utils)
|
||||||
|
|
||||||
/** Features api */
|
/** Features api */
|
||||||
implementation(projects.features.tangempay.main.api)
|
implementation(projects.features.tangempay.main.api)
|
||||||
|
|
||||||
/** Compose */
|
/** Compose */
|
||||||
implementation(deps.compose.foundation)
|
api(deps.compose.foundation)
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
|
|
@ -28,4 +29,9 @@ dependencies {
|
||||||
/** DI */
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
|
/** Other */
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.decompose)
|
||||||
|
implementation(deps.kotlin.coroutines)
|
||||||
}
|
}
|
||||||
|
|
@ -10,12 +10,12 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.models)
|
||||||
|
|
||||||
/** Compose */
|
/** Other */
|
||||||
implementation(deps.compose.runtime)
|
api(deps.kotlin.coroutines)
|
||||||
}
|
}
|
||||||
|
|
@ -12,51 +12,60 @@ android {
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.analytics)
|
api(projects.core.analytics)
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
|
api(projects.core.navigation)
|
||||||
|
api(projects.core.utils)
|
||||||
|
implementation(projects.core.analytics.models)
|
||||||
implementation(projects.core.error)
|
implementation(projects.core.error)
|
||||||
implementation(projects.core.navigation)
|
|
||||||
implementation(projects.core.ui)
|
implementation(projects.core.ui)
|
||||||
implementation(projects.core.utils)
|
|
||||||
|
|
||||||
/** Common */
|
/** Common */
|
||||||
implementation(projects.common.routing)
|
api(projects.common.routing)
|
||||||
implementation(projects.common.ui)
|
implementation(projects.common.ui)
|
||||||
|
|
||||||
/** Features api */
|
/** Features api */
|
||||||
implementation(projects.features.tangempay.onboarding.api)
|
api(projects.features.tangempay.onboarding.api)
|
||||||
|
api(projects.features.wallet.api)
|
||||||
implementation(projects.features.tangempay.details.api)
|
implementation(projects.features.tangempay.details.api)
|
||||||
implementation(projects.features.kyc.api)
|
|
||||||
implementation(projects.features.wallet.api)
|
|
||||||
implementation(projects.features.hotWallet.api)
|
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.appsflyer)
|
api(projects.domain.appsflyer)
|
||||||
implementation(projects.domain.visa)
|
api(projects.domain.hotWallet)
|
||||||
implementation(projects.domain.wallets)
|
api(projects.domain.visa)
|
||||||
implementation(projects.domain.wallets.models)
|
api(projects.domain.visa.models)
|
||||||
implementation(projects.domain.hotWallet)
|
api(projects.domain.wallets)
|
||||||
|
implementation(projects.domain.models)
|
||||||
|
|
||||||
/** Libs */
|
/** Libs */
|
||||||
implementation(tangemDeps.hot.core)
|
implementation(tangemDeps.hot.core)
|
||||||
|
|
||||||
/** Data **/
|
/** Data **/
|
||||||
implementation(projects.data.visa)
|
runtimeOnly(projects.data.visa)
|
||||||
|
|
||||||
/** Compose */
|
/** Compose */
|
||||||
implementation(deps.compose.foundation)
|
api(deps.compose.foundation)
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
implementation(deps.decompose.ext.compose)
|
implementation(deps.decompose.ext.compose)
|
||||||
|
|
||||||
|
/** AndroidX */
|
||||||
|
implementation(deps.androidx.annotation)
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.lifecycle.compose)
|
||||||
|
implementation(deps.lifecycle.runtime.ktx)
|
||||||
|
|
||||||
/** DI */
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/** Other */
|
/** Other */
|
||||||
|
api(deps.kotlin.coroutines)
|
||||||
implementation(deps.arrow.core)
|
implementation(deps.arrow.core)
|
||||||
|
implementation(deps.jodatime)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
implementation(deps.kotlin.immutable.collections)
|
||||||
|
implementation(deps.kotlin.serialization.core)
|
||||||
|
|
||||||
/** Test */
|
/** Test */
|
||||||
testImplementation(deps.test.junit5)
|
testImplementation(deps.test.junit5)
|
||||||
|
|
|
||||||
|
|
@ -13,14 +13,20 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** AndroidX */
|
/** AndroidX */
|
||||||
|
implementation(deps.androidx.activity)
|
||||||
implementation(deps.androidx.activity.compose)
|
implementation(deps.androidx.activity.compose)
|
||||||
|
implementation(deps.androidx.annotation)
|
||||||
|
implementation(deps.androidx.core)
|
||||||
|
implementation(deps.lifecycle.compose)
|
||||||
|
implementation(deps.lifecycle.runtime.ktx)
|
||||||
|
|
||||||
/** Compose */
|
/** Compose */
|
||||||
|
api(deps.compose.foundation)
|
||||||
implementation(deps.compose.accompanist.systemUiController)
|
implementation(deps.compose.accompanist.systemUiController)
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.navigation)
|
implementation(deps.compose.navigation)
|
||||||
implementation(deps.compose.navigation.hilt)
|
implementation(deps.compose.navigation.hilt)
|
||||||
|
implementation(deps.compose.reorderable)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
implementation(deps.compose.ui.utils)
|
implementation(deps.compose.ui.utils)
|
||||||
|
|
@ -30,44 +36,53 @@ dependencies {
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/** Domain modules */
|
/** Domain modules */
|
||||||
implementation(projects.domain.account)
|
api(projects.domain.account)
|
||||||
implementation(projects.domain.card)
|
api(projects.domain.common)
|
||||||
implementation(projects.domain.feedback)
|
api(projects.domain.feedback)
|
||||||
implementation(projects.domain.markets.models)
|
api(projects.domain.markets)
|
||||||
implementation(projects.domain.markets)
|
api(projects.domain.settings)
|
||||||
implementation(projects.domain.manageTokens.models)
|
api(projects.domain.wallets)
|
||||||
implementation(projects.domain.manageTokens)
|
implementation(projects.domain.appCurrency.models)
|
||||||
implementation(projects.domain.wallets.models)
|
implementation(projects.domain.demo.models)
|
||||||
implementation(projects.domain.wallets)
|
|
||||||
implementation(projects.domain.feedback.models)
|
implementation(projects.domain.feedback.models)
|
||||||
implementation(projects.domain.settings)
|
implementation(projects.domain.manageTokens.models)
|
||||||
|
implementation(projects.domain.markets.models)
|
||||||
|
implementation(projects.domain.models)
|
||||||
|
implementation(projects.domain.walletManager)
|
||||||
|
runtimeOnly(projects.domain.card)
|
||||||
|
runtimeOnly(projects.domain.manageTokens)
|
||||||
|
|
||||||
implementation(projects.data.common)
|
/** Data */
|
||||||
|
api(projects.data.common)
|
||||||
|
|
||||||
/** Other libraries */
|
/** Other libraries */
|
||||||
|
api(deps.kotlin.immutable.collections)
|
||||||
|
api(deps.kotlin.serialization)
|
||||||
implementation(deps.arrow.core)
|
implementation(deps.arrow.core)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
implementation(deps.haze)
|
||||||
|
implementation(deps.kotlin.coroutines)
|
||||||
|
|
||||||
/** Core modules */
|
/** Core modules */
|
||||||
implementation(projects.core.datasource)
|
api(projects.core.configToggles)
|
||||||
implementation(projects.core.configToggles)
|
api(projects.core.datasource)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.navigation)
|
||||||
implementation(projects.core.utils)
|
api(projects.core.ui)
|
||||||
implementation(projects.core.navigation)
|
api(projects.core.utils)
|
||||||
implementation(projects.core.pagination)
|
implementation(projects.core.pagination)
|
||||||
|
|
||||||
/** Feature Apis */
|
/** Feature Apis */
|
||||||
implementation(projects.features.tester.api)
|
api(projects.features.survey.api)
|
||||||
|
api(projects.features.tester.api)
|
||||||
implementation(projects.features.pushNotifications.api)
|
implementation(projects.features.pushNotifications.api)
|
||||||
implementation(projects.features.survey.api)
|
|
||||||
|
|
||||||
/* SDK */
|
/* SDK */
|
||||||
implementation(tangemDeps.blockchain)
|
implementation(tangemDeps.blockchain)
|
||||||
|
|
||||||
/** Other modules */
|
/** Other modules */
|
||||||
implementation(projects.common.routing)
|
api(projects.common.routing)
|
||||||
|
api(projects.libs.blockchainSdk)
|
||||||
|
implementation(projects.common)
|
||||||
implementation(projects.common.ui)
|
implementation(projects.common.ui)
|
||||||
implementation(projects.libs.blockchainSdk)
|
|
||||||
implementation(projects.libs.crypto)
|
implementation(projects.libs.crypto)
|
||||||
implementation(deps.kotlin.serialization)
|
implementation(projects.libs.tangemSdkApi)
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue