Updated on 2026-08-14
This commit is contained in:
parent
8c84593e15
commit
3b6eeb7535
17 changed files with 250 additions and 298 deletions
|
|
@ -11,19 +11,20 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
|
|
||||||
/* Project - API */
|
/* Kotlin */
|
||||||
api(projects.features.account.api)
|
api(deps.kotlin.coroutines)
|
||||||
|
api(deps.kotlin.serialization.core)
|
||||||
|
|
||||||
|
/* Compose */
|
||||||
|
api(deps.compose.foundation)
|
||||||
|
|
||||||
/* Project - Core */
|
/* Project - Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/* Project - Domain */
|
/* Project - Domain */
|
||||||
implementation(projects.domain.core)
|
api(projects.domain.appCurrency.models)
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.markets.models)
|
||||||
implementation(projects.domain.tokens.models)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.appCurrency.models)
|
|
||||||
implementation(projects.domain.markets.models)
|
|
||||||
}
|
}
|
||||||
|
|
@ -18,52 +18,48 @@ android {
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
/* Project - API */
|
/* Project - API */
|
||||||
api(projects.features.feed.api)
|
|
||||||
api(projects.features.onramp.api)
|
|
||||||
api(projects.features.send.api)
|
|
||||||
api(projects.features.tokenRecieve.api)
|
|
||||||
api(projects.features.wallet.api)
|
|
||||||
api(projects.features.account.api)
|
|
||||||
api(projects.features.commonFeatures.api)
|
api(projects.features.commonFeatures.api)
|
||||||
|
api(projects.features.feed.api)
|
||||||
api(projects.features.forYou.api)
|
api(projects.features.forYou.api)
|
||||||
implementation(projects.features.promoBanners.api)
|
api(projects.features.promoBanners.api)
|
||||||
|
api(projects.features.tokenRecieve.api)
|
||||||
|
|
||||||
/* Data */
|
/* Data */
|
||||||
implementation(projects.data.common)
|
implementation(projects.data.common)
|
||||||
|
|
||||||
/* Domain */
|
/* Domain */
|
||||||
|
api(projects.domain.account.status)
|
||||||
|
api(projects.domain.appCurrency)
|
||||||
|
api(projects.domain.balanceHiding)
|
||||||
|
api(projects.domain.common)
|
||||||
|
api(projects.domain.earn)
|
||||||
|
api(projects.domain.feedback)
|
||||||
|
api(projects.domain.markets)
|
||||||
|
api(projects.domain.models)
|
||||||
|
api(projects.domain.news)
|
||||||
|
api(projects.domain.search)
|
||||||
|
api(projects.domain.settings)
|
||||||
|
api(projects.domain.tokens)
|
||||||
|
api(projects.domain.transaction)
|
||||||
|
api(projects.domain.wallets)
|
||||||
|
api(projects.domain.yieldSupply)
|
||||||
implementation(projects.domain.account)
|
implementation(projects.domain.account)
|
||||||
implementation(projects.domain.account.status)
|
|
||||||
implementation(projects.domain.appCurrency)
|
|
||||||
implementation(projects.domain.appCurrency.models)
|
implementation(projects.domain.appCurrency.models)
|
||||||
implementation(projects.domain.balanceHiding)
|
|
||||||
implementation(projects.domain.balanceHiding.models)
|
|
||||||
implementation(projects.domain.card)
|
implementation(projects.domain.card)
|
||||||
implementation(projects.domain.demo)
|
implementation(projects.domain.core)
|
||||||
implementation(projects.domain.feedback)
|
|
||||||
implementation(projects.domain.feedback.models)
|
implementation(projects.domain.feedback.models)
|
||||||
implementation(projects.domain.manageTokens)
|
|
||||||
implementation(projects.domain.markets)
|
|
||||||
implementation(projects.domain.offramp)
|
|
||||||
implementation(projects.domain.onramp.models)
|
|
||||||
implementation(projects.domain.staking.models)
|
|
||||||
implementation(projects.domain.tokens)
|
|
||||||
implementation(projects.domain.tokens.models)
|
implementation(projects.domain.tokens.models)
|
||||||
implementation(projects.domain.wallets)
|
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
implementation(projects.domain.settings)
|
|
||||||
implementation(projects.domain.notifications.models)
|
|
||||||
implementation(projects.domain.transaction)
|
|
||||||
implementation(projects.domain.news)
|
|
||||||
implementation(projects.domain.yieldSupply.models)
|
implementation(projects.domain.yieldSupply.models)
|
||||||
implementation(projects.domain.yieldSupply)
|
runtimeOnly(projects.domain.manageTokens)
|
||||||
implementation(projects.domain.earn)
|
runtimeOnly(projects.domain.offramp)
|
||||||
implementation(projects.domain.search)
|
|
||||||
|
/* Domain models */
|
||||||
|
api(projects.domain.markets.models)
|
||||||
|
|
||||||
/* Compose */
|
/* Compose */
|
||||||
implementation(deps.compose.coil)
|
api(deps.compose.coil)
|
||||||
implementation(deps.compose.foundation)
|
api(deps.compose.foundation)
|
||||||
implementation(deps.compose.material3)
|
api(deps.compose.material3)
|
||||||
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)
|
||||||
|
|
@ -76,31 +72,38 @@ dependencies {
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/* Other */
|
/* Other */
|
||||||
implementation(deps.kotlin.immutable.collections)
|
api(deps.decompose.ext.compose)
|
||||||
implementation(deps.decompose.ext.compose)
|
api(deps.kotlin.coroutines)
|
||||||
|
api(deps.kotlin.immutable.collections)
|
||||||
|
api(deps.kotlin.serialization.core)
|
||||||
|
implementation(deps.androidx.annotation)
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.arrow.core)
|
||||||
|
implementation(deps.haze)
|
||||||
|
implementation(deps.jodatime)
|
||||||
|
|
||||||
/* Core */
|
/* Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.analytics)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.configToggles)
|
api(projects.core.navigation)
|
||||||
implementation(projects.core.analytics)
|
api(projects.core.ui)
|
||||||
|
api(projects.core.utils)
|
||||||
implementation(projects.core.analytics.models)
|
implementation(projects.core.analytics.models)
|
||||||
implementation(projects.core.navigation)
|
|
||||||
implementation(projects.core.utils)
|
|
||||||
implementation(projects.core.datasource)
|
implementation(projects.core.datasource)
|
||||||
|
implementation(projects.core.pagination)
|
||||||
|
|
||||||
/* Common */
|
/* Common */
|
||||||
implementation(projects.common.ui)
|
api(projects.common.routing)
|
||||||
|
api(projects.common.ui)
|
||||||
|
api(projects.common.uiMarkets)
|
||||||
|
implementation(projects.common)
|
||||||
implementation(projects.common.uiCharts)
|
implementation(projects.common.uiCharts)
|
||||||
implementation(projects.common.routing)
|
|
||||||
implementation(projects.common.uiMarkets)
|
|
||||||
|
|
||||||
/* Libs */
|
/* Libs */
|
||||||
|
api(projects.libs.blockchainSdk)
|
||||||
implementation(projects.libs.crypto)
|
implementation(projects.libs.crypto)
|
||||||
implementation(projects.libs.blockchainSdk)
|
|
||||||
|
|
||||||
/** Tangem libraries */
|
/** Tangem libraries */
|
||||||
implementation(tangemDeps.card.core)
|
|
||||||
implementation(tangemDeps.blockchain)
|
implementation(tangemDeps.blockchain)
|
||||||
|
|
||||||
/** Tests */
|
/** Tests */
|
||||||
|
|
@ -108,4 +111,5 @@ dependencies {
|
||||||
testImplementation(deps.test.mockk)
|
testImplementation(deps.test.mockk)
|
||||||
testImplementation(deps.test.truth)
|
testImplementation(deps.test.truth)
|
||||||
testImplementation(deps.test.coroutine)
|
testImplementation(deps.test.coroutine)
|
||||||
|
testImplementation(projects.domain.wallets.models)
|
||||||
}
|
}
|
||||||
|
|
@ -12,9 +12,6 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Project - Core */
|
/** Project - Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/** Other dependencies */
|
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
}
|
}
|
||||||
|
|
@ -18,37 +18,53 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
/** Features */
|
/** Project - Features */
|
||||||
implementation(projects.features.forYou.api)
|
api(projects.features.forYou.api)
|
||||||
implementation(projects.features.promoBanners.api)
|
api(projects.features.promoBanners.api)
|
||||||
implementation(projects.features.commonFeatures.api)
|
implementation(projects.features.commonFeatures.api)
|
||||||
|
|
||||||
/** Domain */
|
/** Project - Core */
|
||||||
implementation(projects.domain.common)
|
api(projects.core.configToggles)
|
||||||
implementation(projects.domain.models)
|
api(projects.core.decompose)
|
||||||
implementation(projects.domain.account.status)
|
api(projects.core.utils)
|
||||||
implementation(projects.domain.appCurrency)
|
|
||||||
|
|
||||||
/** Core */
|
|
||||||
implementation(projects.core.decompose)
|
|
||||||
implementation(projects.core.ui)
|
implementation(projects.core.ui)
|
||||||
implementation(projects.core.configToggles)
|
|
||||||
|
|
||||||
implementation(projects.common.ui)
|
/** Project - Common */
|
||||||
|
api(projects.common.ui)
|
||||||
|
|
||||||
|
/** Project - Domain */
|
||||||
|
api(projects.domain.account.status)
|
||||||
|
api(projects.domain.appCurrency)
|
||||||
|
api(projects.domain.common)
|
||||||
|
api(projects.domain.wallets)
|
||||||
|
implementation(projects.domain.account)
|
||||||
|
implementation(projects.domain.models)
|
||||||
|
|
||||||
|
/** Project - Domain models */
|
||||||
|
implementation(projects.domain.appCurrency.models)
|
||||||
|
|
||||||
|
/** Compose */
|
||||||
|
api(deps.compose.animation)
|
||||||
|
api(deps.compose.foundation)
|
||||||
|
implementation(deps.compose.material3)
|
||||||
|
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.foundation)
|
|
||||||
implementation(deps.compose.animation)
|
/** Other libraries */
|
||||||
implementation(deps.lifecycle.compose)
|
implementation(deps.androidx.appCompat)
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.arrow.core)
|
||||||
|
implementation(deps.decompose)
|
||||||
|
implementation(deps.haze)
|
||||||
|
implementation(deps.kotlin.coroutines)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
implementation(deps.kotlin.immutable.collections)
|
||||||
|
implementation(deps.lifecycle.compose)
|
||||||
|
|
||||||
/** DI */
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/** Test */
|
/** Tests */
|
||||||
testImplementation(projects.common.test)
|
testImplementation(projects.common.test)
|
||||||
testImplementation(projects.test.core)
|
testImplementation(projects.test.core)
|
||||||
}
|
}
|
||||||
|
|
@ -9,9 +9,9 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/** Common */
|
/** Common */
|
||||||
implementation(projects.common.routing)
|
api(projects.common.routing)
|
||||||
}
|
}
|
||||||
|
|
@ -12,41 +12,48 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Api */
|
/** Api */
|
||||||
implementation(projects.features.home.api)
|
api(projects.features.home.api)
|
||||||
|
|
||||||
/** Core modules */
|
/** Core modules */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.analytics)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.configToggles)
|
||||||
implementation(projects.core.analytics)
|
api(projects.core.decompose)
|
||||||
|
api(projects.core.utils)
|
||||||
implementation(projects.core.analytics.models)
|
implementation(projects.core.analytics.models)
|
||||||
implementation(projects.core.utils)
|
implementation(projects.core.ui)
|
||||||
implementation(projects.core.configToggles)
|
|
||||||
|
|
||||||
/** Common */
|
/** Common */
|
||||||
implementation(projects.common.routing)
|
implementation(projects.common.routing)
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.common)
|
api(projects.domain.card)
|
||||||
|
api(projects.domain.common)
|
||||||
|
api(projects.domain.settings)
|
||||||
|
api(projects.domain.wallets)
|
||||||
implementation(projects.domain.models)
|
implementation(projects.domain.models)
|
||||||
implementation(projects.domain.card)
|
|
||||||
implementation(projects.domain.settings)
|
|
||||||
implementation(projects.domain.wallets)
|
|
||||||
|
|
||||||
/** Referral */
|
/** Referral */
|
||||||
implementation(projects.features.referral.domain)
|
api(projects.features.referral.domain)
|
||||||
|
|
||||||
/** Compose libraries */
|
/** Compose libraries */
|
||||||
|
api(deps.compose.animation)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
implementation(deps.compose.foundation)
|
implementation(deps.compose.foundation)
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.animation)
|
|
||||||
|
|
||||||
/** Tangem libraries */
|
/** Tangem libraries */
|
||||||
implementation(tangemDeps.card.core)
|
implementation(tangemDeps.card.core)
|
||||||
|
|
||||||
/** Other libraries */
|
/** Other libraries */
|
||||||
|
implementation(deps.androidx.annotation)
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.arrow.core)
|
||||||
|
implementation(deps.decompose)
|
||||||
|
implementation(deps.kotlin.coroutines)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
implementation(deps.kotlin.immutable.collections)
|
||||||
|
implementation(deps.lifecycle.compose)
|
||||||
|
implementation(deps.lifecycle.runtime.ktx)
|
||||||
|
|
||||||
/** DI */
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
|
|
|
||||||
|
|
@ -9,24 +9,17 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(projects.common.routing)
|
api(projects.common.routing)
|
||||||
|
|
||||||
/* Project - Domain */
|
/* Project - Domain */
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.wallets)
|
api(projects.domain.wallets)
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
|
|
||||||
/* Project - Core */
|
/* Project - Core */
|
||||||
api(projects.core.analytics.models)
|
api(projects.core.analytics.models)
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/* Tangem libraries */
|
/* Tangem libraries */
|
||||||
implementation(tangemDeps.card.core)
|
api(tangemDeps.card.core)
|
||||||
|
|
||||||
/* Compose */
|
|
||||||
implementation(deps.compose.runtime)
|
|
||||||
|
|
||||||
/* Tangem libs */
|
|
||||||
implementation(tangemDeps.hot.core)
|
|
||||||
}
|
}
|
||||||
|
|
@ -12,65 +12,67 @@ android {
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Api */
|
/** Api */
|
||||||
implementation(projects.features.hotWallet.api)
|
api(projects.features.hotWallet.api)
|
||||||
implementation(projects.features.onboardingV2.api)
|
api(projects.features.onboardingV2.api)
|
||||||
implementation(projects.features.pushNotifications.api)
|
api(projects.features.pushNotifications.api)
|
||||||
|
|
||||||
/** Core modules */
|
/** Core modules */
|
||||||
implementation(projects.core.configToggles)
|
api(projects.core.analytics)
|
||||||
implementation(projects.core.analytics)
|
api(projects.core.configToggles)
|
||||||
|
api(projects.core.datasource)
|
||||||
|
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.utils)
|
|
||||||
implementation(projects.core.ui)
|
|
||||||
implementation(projects.core.res)
|
implementation(projects.core.res)
|
||||||
implementation(projects.core.decompose)
|
|
||||||
implementation(projects.core.navigation)
|
|
||||||
implementation(projects.core.datasource)
|
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.card)
|
api(projects.domain.assetsdiscovery)
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.card)
|
||||||
implementation(projects.domain.wallets)
|
api(projects.domain.common)
|
||||||
implementation(projects.domain.wallets.models)
|
api(projects.domain.feedback)
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.hotWallet)
|
||||||
implementation(projects.domain.settings)
|
api(projects.domain.settings)
|
||||||
implementation(projects.domain.feedback)
|
api(projects.domain.wallets)
|
||||||
implementation(projects.domain.feedback.models)
|
implementation(projects.domain.feedback.models)
|
||||||
implementation(projects.domain.hotWallet)
|
implementation(projects.domain.models)
|
||||||
implementation(projects.domain.assetsdiscovery)
|
implementation(projects.domain.wallets.models)
|
||||||
|
|
||||||
/** Common */
|
/** Common */
|
||||||
implementation(projects.common.ui)
|
|
||||||
implementation(projects.common.routing)
|
implementation(projects.common.routing)
|
||||||
|
runtimeOnly(projects.common.ui)
|
||||||
|
|
||||||
/** Tangem libraries */
|
/** Tangem libraries */
|
||||||
implementation(projects.libs.tangemSdkApi)
|
api(projects.libs.tangemSdkApi)
|
||||||
|
api(tangemDeps.hot.core)
|
||||||
implementation(tangemDeps.card.core)
|
implementation(tangemDeps.card.core)
|
||||||
implementation(tangemDeps.card.android) {
|
implementation(tangemDeps.card.android) {
|
||||||
exclude(module = "joda-time")
|
exclude(module = "joda-time")
|
||||||
}
|
}
|
||||||
implementation(tangemDeps.hot.core)
|
runtimeOnly(tangemDeps.hot.android)
|
||||||
implementation(tangemDeps.hot.android)
|
|
||||||
|
|
||||||
/** AndroidX libraries */
|
/** AndroidX libraries */
|
||||||
implementation(deps.androidx.core.ktx)
|
implementation(deps.androidx.annotation)
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.lifecycle.compose)
|
||||||
implementation(deps.lifecycle.runtime.ktx)
|
implementation(deps.lifecycle.runtime.ktx)
|
||||||
|
|
||||||
/** Compose libraries */
|
/** Compose libraries */
|
||||||
|
api(deps.compose.animation)
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.animation)
|
|
||||||
implementation(deps.compose.foundation)
|
implementation(deps.compose.foundation)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
implementation(deps.compose.coil)
|
implementation(deps.lottie)
|
||||||
implementation(deps.lottie.compose)
|
implementation(deps.lottie.compose)
|
||||||
implementation(deps.decompose.ext.compose)
|
implementation(deps.decompose.ext.compose)
|
||||||
implementation(deps.androidx.activity.compose)
|
implementation(deps.androidx.activity.compose)
|
||||||
implementation(deps.androidx.datastore)
|
|
||||||
|
|
||||||
/** Other libraries */
|
/** Other libraries */
|
||||||
|
api(deps.kotlin.coroutines)
|
||||||
|
api(deps.kotlin.immutable.collections)
|
||||||
implementation(deps.arrow.core)
|
implementation(deps.arrow.core)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
|
||||||
implementation(deps.kotlin.serialization)
|
implementation(deps.kotlin.serialization)
|
||||||
implementation(deps.firebase.crashlytics)
|
implementation(deps.firebase.crashlytics)
|
||||||
|
|
||||||
|
|
@ -81,6 +83,5 @@ dependencies {
|
||||||
/** Test */
|
/** Test */
|
||||||
testImplementation(deps.test.junit5)
|
testImplementation(deps.test.junit5)
|
||||||
testImplementation(deps.test.mockk)
|
testImplementation(deps.test.mockk)
|
||||||
testImplementation(deps.test.truth)
|
|
||||||
testImplementation(deps.test.coroutine)
|
testImplementation(deps.test.coroutine)
|
||||||
}
|
}
|
||||||
|
|
@ -10,13 +10,10 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
/* Project - Domain */
|
|
||||||
implementation(projects.domain.models)
|
|
||||||
|
|
||||||
/* Project - Core */
|
/* Project - Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/* Compose */
|
/* Project - Domain */
|
||||||
implementation(deps.compose.runtime)
|
api(projects.domain.models)
|
||||||
}
|
}
|
||||||
|
|
@ -13,45 +13,36 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Api */
|
/** Api */
|
||||||
implementation(projects.features.kyc.api)
|
api(projects.features.kyc.api)
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.visa)
|
api(projects.domain.visa)
|
||||||
implementation(projects.domain.wallets.models)
|
api(projects.domain.visa.models)
|
||||||
|
implementation(projects.domain.models)
|
||||||
|
|
||||||
/** Core modules */
|
/** Core modules */
|
||||||
implementation(projects.core.configToggles)
|
api(projects.core.analytics)
|
||||||
implementation(projects.core.analytics)
|
api(projects.core.decompose)
|
||||||
|
api(projects.core.utils)
|
||||||
implementation(projects.core.analytics.models)
|
implementation(projects.core.analytics.models)
|
||||||
implementation(projects.core.utils)
|
|
||||||
implementation(projects.core.ui)
|
implementation(projects.core.ui)
|
||||||
implementation(projects.core.res)
|
|
||||||
implementation(projects.core.decompose)
|
|
||||||
implementation(projects.core.navigation)
|
|
||||||
implementation(projects.core.datasource)
|
|
||||||
implementation(projects.core.error)
|
|
||||||
|
|
||||||
/** Common */
|
|
||||||
implementation(projects.common.ui)
|
|
||||||
implementation(projects.common.routing)
|
|
||||||
|
|
||||||
/** Compose libraries */
|
/** Compose libraries */
|
||||||
|
api(deps.compose.animation)
|
||||||
|
api(deps.decompose.ext.compose)
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.animation)
|
|
||||||
implementation(deps.compose.foundation)
|
implementation(deps.compose.foundation)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
implementation(deps.compose.coil)
|
|
||||||
implementation(deps.lottie.compose)
|
|
||||||
implementation(deps.decompose.ext.compose)
|
|
||||||
implementation(deps.androidx.activity.compose)
|
|
||||||
|
|
||||||
/** Other libraries */
|
/** Other libraries */
|
||||||
implementation(deps.kotlin.immutable.collections)
|
api(deps.androidx.appCompat)
|
||||||
implementation(deps.kotlin.serialization)
|
api(deps.kotlin.coroutines)
|
||||||
|
implementation(deps.androidx.core)
|
||||||
implementation(deps.firebase.crashlytics)
|
implementation(deps.firebase.crashlytics)
|
||||||
implementation(deps.sumsub.sdk)
|
implementation(deps.sumsub.sdk)
|
||||||
implementation(deps.arrow.core)
|
implementation(deps.arrow.core)
|
||||||
|
runtimeOnly(deps.lottie)
|
||||||
|
|
||||||
/** DI */
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
|
|
|
||||||
|
|
@ -12,11 +12,10 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Api */
|
/** Api */
|
||||||
implementation(projects.features.kyc.api)
|
api(projects.features.kyc.api)
|
||||||
|
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(projects.core.ui)
|
|
||||||
|
|
||||||
/** DI */
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
|
|
|
||||||
|
|
@ -10,15 +10,16 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
/* Kotlin */
|
||||||
|
api(deps.kotlin.serialization.core)
|
||||||
|
|
||||||
/* Project - Domain */
|
/* Project - Domain */
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
implementation(projects.domain.manageTokens.models)
|
|
||||||
|
|
||||||
/* Project - Core */
|
/* Project - Core */
|
||||||
implementation(projects.core.ui)
|
api(projects.core.analytics.models)
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.analytics.models)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/* Compose */
|
/* Compose */
|
||||||
implementation(deps.compose.runtime)
|
implementation(deps.compose.runtime)
|
||||||
|
|
|
||||||
|
|
@ -16,33 +16,34 @@ dependencies {
|
||||||
implementation(tangemDeps.card.core)
|
implementation(tangemDeps.card.core)
|
||||||
|
|
||||||
/* Project - API */
|
/* Project - API */
|
||||||
implementation(projects.features.manageTokens.api)
|
api(projects.features.commonFeatures.api)
|
||||||
implementation(projects.features.swapV2.api)
|
api(projects.features.manageTokens.api)
|
||||||
implementation(projects.features.commonFeatures.api)
|
api(projects.features.swapV2.api)
|
||||||
|
|
||||||
/* Project - Core */
|
/* Project - Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.analytics)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.configToggles)
|
api(projects.core.ui)
|
||||||
implementation(projects.core.analytics)
|
api(projects.core.utils)
|
||||||
implementation(projects.core.utils)
|
implementation(projects.core.analytics.models)
|
||||||
|
implementation(projects.core.pagination)
|
||||||
implementation(projects.common.routing)
|
implementation(projects.common.routing)
|
||||||
implementation(projects.common.ui)
|
implementation(projects.common.ui)
|
||||||
|
|
||||||
/* Project - Domain */
|
/* Project - Domain */
|
||||||
implementation(projects.domain.account.status)
|
api(projects.domain.account)
|
||||||
implementation(projects.domain.account)
|
api(projects.domain.account.status)
|
||||||
implementation(projects.domain.card)
|
api(projects.domain.dynamicAddresses)
|
||||||
implementation(projects.domain.legacy)
|
api(projects.domain.manageTokens)
|
||||||
implementation(projects.domain.manageTokens)
|
api(projects.domain.manageTokens.models)
|
||||||
implementation(projects.domain.tokens)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.tokens.models)
|
api(projects.domain.notifications)
|
||||||
implementation(projects.domain.wallets)
|
api(projects.domain.wallets)
|
||||||
implementation(projects.domain.wallets.models)
|
implementation(projects.domain.core)
|
||||||
implementation(projects.domain.swap.models)
|
|
||||||
implementation(projects.domain.markets.models)
|
implementation(projects.domain.markets.models)
|
||||||
implementation(projects.domain.notifications)
|
implementation(projects.domain.swap.models)
|
||||||
implementation(projects.domain.dynamicAddresses)
|
runtimeOnly(projects.domain.card)
|
||||||
|
runtimeOnly(projects.domain.tokens)
|
||||||
|
|
||||||
// region Project - Libs
|
// region Project - Libs
|
||||||
implementation(projects.libs.blockchainSdk)
|
implementation(projects.libs.blockchainSdk)
|
||||||
|
|
@ -54,21 +55,24 @@ dependencies {
|
||||||
// endregion
|
// endregion
|
||||||
|
|
||||||
/* AndroidX */
|
/* AndroidX */
|
||||||
implementation(deps.androidx.activity.compose)
|
implementation(deps.androidx.annotation)
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
implementation(deps.lifecycle.compose)
|
implementation(deps.lifecycle.compose)
|
||||||
|
|
||||||
/* Compose */
|
/* Compose */
|
||||||
|
api(deps.compose.foundation)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.shimmer)
|
|
||||||
|
|
||||||
/* DI */
|
/* DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/* Other */
|
/* Other */
|
||||||
implementation(deps.kotlin.immutable.collections)
|
api(deps.kotlin.coroutines)
|
||||||
|
implementation(deps.arrow.core)
|
||||||
implementation(deps.decompose.ext.compose)
|
implementation(deps.decompose.ext.compose)
|
||||||
|
implementation(deps.kotlin.immutable.collections)
|
||||||
|
implementation(deps.kotlin.serialization.core)
|
||||||
}
|
}
|
||||||
|
|
@ -11,15 +11,12 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(deps.compose.foundation)
|
api(deps.kotlin.serialization.core)
|
||||||
|
|
||||||
/* Project - Core */
|
/* Project - Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/* Project - Domain */
|
/* Project - Domain */
|
||||||
implementation(projects.domain.core)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.tokens.models)
|
|
||||||
implementation(projects.domain.appCurrency.models)
|
|
||||||
implementation(projects.domain.markets.models)
|
|
||||||
}
|
}
|
||||||
|
|
@ -14,82 +14,41 @@ android {
|
||||||
dependencies {
|
dependencies {
|
||||||
/* Project - API */
|
/* Project - API */
|
||||||
api(projects.features.markets.api)
|
api(projects.features.markets.api)
|
||||||
api(projects.features.onramp.api)
|
|
||||||
api(projects.features.send.api)
|
|
||||||
api(projects.features.tokenRecieve.api)
|
|
||||||
api(projects.features.wallet.api)
|
|
||||||
api(projects.features.account.api)
|
|
||||||
|
|
||||||
/* Data */
|
|
||||||
implementation(projects.data.common)
|
|
||||||
|
|
||||||
/* Domain */
|
/* Domain */
|
||||||
implementation(projects.domain.account)
|
api(projects.domain.appCurrency)
|
||||||
implementation(projects.domain.account.status)
|
api(projects.domain.markets)
|
||||||
implementation(projects.domain.appCurrency)
|
|
||||||
implementation(projects.domain.appCurrency.models)
|
implementation(projects.domain.appCurrency.models)
|
||||||
implementation(projects.domain.balanceHiding)
|
implementation(projects.domain.markets.models)
|
||||||
implementation(projects.domain.balanceHiding.models)
|
implementation(projects.domain.models)
|
||||||
implementation(projects.domain.card)
|
|
||||||
implementation(projects.domain.demo)
|
|
||||||
implementation(projects.domain.feedback)
|
|
||||||
implementation(projects.domain.feedback.models)
|
|
||||||
implementation(projects.domain.manageTokens)
|
|
||||||
implementation(projects.domain.markets)
|
|
||||||
implementation(projects.domain.offramp)
|
|
||||||
implementation(projects.domain.onramp.models)
|
|
||||||
implementation(projects.domain.staking.models)
|
|
||||||
implementation(projects.domain.staking)
|
|
||||||
implementation(projects.domain.tokens)
|
|
||||||
implementation(projects.domain.tokens.models)
|
|
||||||
implementation(projects.domain.wallets)
|
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
implementation(projects.domain.settings)
|
|
||||||
implementation(projects.domain.notifications.models)
|
|
||||||
implementation(projects.domain.transaction)
|
|
||||||
implementation(projects.domain.yieldSupply.models)
|
|
||||||
implementation(projects.domain.yieldSupply)
|
|
||||||
|
|
||||||
|
|
||||||
/* Compose */
|
/* Compose */
|
||||||
implementation(deps.compose.coil)
|
|
||||||
implementation(deps.compose.foundation)
|
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.compose.ui.utils)
|
implementation(deps.compose.ui.utils)
|
||||||
implementation(deps.lifecycle.compose)
|
implementation(deps.lifecycle.compose)
|
||||||
implementation(deps.androidx.activity.compose)
|
|
||||||
implementation(deps.markdown.composeview)
|
|
||||||
|
|
||||||
/* DI */
|
/* DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/* Other */
|
/* Other */
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.arrow.core)
|
||||||
|
implementation(deps.kotlin.coroutines)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
implementation(deps.kotlin.immutable.collections)
|
||||||
implementation(deps.decompose.ext.compose)
|
implementation(deps.decompose.ext.compose)
|
||||||
|
|
||||||
/* Core */
|
/* Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
|
api(projects.core.utils)
|
||||||
implementation(projects.core.ui)
|
implementation(projects.core.ui)
|
||||||
implementation(projects.core.configToggles)
|
|
||||||
implementation(projects.core.analytics)
|
|
||||||
implementation(projects.core.analytics.models)
|
|
||||||
implementation(projects.core.navigation)
|
|
||||||
implementation(projects.core.utils)
|
|
||||||
|
|
||||||
/* Common */
|
/* Common */
|
||||||
implementation(projects.common.ui)
|
implementation(projects.common.ui)
|
||||||
implementation(projects.common.uiMarkets)
|
implementation(projects.common.uiMarkets)
|
||||||
implementation(projects.common.uiCharts)
|
implementation(projects.common.uiCharts)
|
||||||
implementation(projects.common.routing)
|
implementation(projects.common.routing)
|
||||||
|
|
||||||
/* Libs */
|
|
||||||
implementation(projects.libs.crypto)
|
|
||||||
implementation(projects.libs.blockchainSdk)
|
|
||||||
|
|
||||||
/** Tangem libraries */
|
|
||||||
implementation(tangemDeps.card.core)
|
|
||||||
implementation(tangemDeps.blockchain)
|
|
||||||
}
|
}
|
||||||
|
|
@ -11,15 +11,10 @@ android {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
/* Project - Domain */
|
/* Project - Domain */
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.nft.models)
|
api(projects.domain.nft.models)
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
implementation(projects.domain.account)
|
|
||||||
|
|
||||||
/* Project - Core */
|
/* Project - Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/* Compose */
|
|
||||||
implementation(deps.compose.runtime)
|
|
||||||
}
|
}
|
||||||
|
|
@ -13,65 +13,55 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Api */
|
/** Api */
|
||||||
implementation(projects.features.commonFeatures.api)
|
api(projects.features.commonFeatures.api)
|
||||||
implementation(projects.features.nft.api)
|
api(projects.features.nft.api)
|
||||||
implementation(projects.features.tokenRecieve.api)
|
api(projects.features.tokenRecieve.api)
|
||||||
|
|
||||||
/** Core modules */
|
/** Core modules */
|
||||||
implementation(projects.core.configToggles)
|
api(projects.core.analytics)
|
||||||
implementation(projects.core.analytics)
|
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.utils)
|
|
||||||
implementation(projects.core.ui)
|
|
||||||
implementation(projects.core.res)
|
|
||||||
implementation(projects.core.decompose)
|
|
||||||
implementation(projects.core.navigation)
|
|
||||||
implementation(projects.core.datasource)
|
|
||||||
|
|
||||||
/** Domain modules */
|
/** Domain modules */
|
||||||
implementation(projects.domain.account.status)
|
api(projects.domain.account)
|
||||||
implementation(projects.domain.wallets)
|
api(projects.domain.account.status)
|
||||||
|
api(projects.domain.appCurrency)
|
||||||
|
api(projects.domain.nft)
|
||||||
|
api(projects.domain.transaction)
|
||||||
|
api(projects.domain.wallets)
|
||||||
implementation(projects.domain.appCurrency.models)
|
implementation(projects.domain.appCurrency.models)
|
||||||
implementation(projects.domain.appCurrency)
|
implementation(projects.domain.core)
|
||||||
implementation(projects.domain.models)
|
implementation(projects.domain.models)
|
||||||
implementation(projects.domain.nft)
|
|
||||||
implementation(projects.domain.nft.models)
|
implementation(projects.domain.nft.models)
|
||||||
implementation(projects.domain.tokens.models)
|
runtimeOnly(projects.domain.tokens)
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
implementation(projects.domain.transaction)
|
|
||||||
implementation(projects.domain.tokens)
|
|
||||||
|
|
||||||
/** Common */
|
/** Common */
|
||||||
implementation(projects.common.ui)
|
implementation(projects.common.ui)
|
||||||
implementation(projects.common.routing)
|
implementation(projects.common.routing)
|
||||||
|
|
||||||
/** Tangem libraries */
|
|
||||||
implementation(projects.libs.tangemSdkApi)
|
|
||||||
implementation(projects.libs.crypto)
|
|
||||||
implementation(tangemDeps.card.core)
|
|
||||||
implementation(tangemDeps.card.android) {
|
|
||||||
exclude(module = "joda-time")
|
|
||||||
}
|
|
||||||
|
|
||||||
/** AndroidX libraries */
|
/** AndroidX libraries */
|
||||||
implementation(deps.androidx.core.ktx)
|
implementation(deps.androidx.annotation)
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.lifecycle.compose)
|
||||||
implementation(deps.lifecycle.runtime.ktx)
|
implementation(deps.lifecycle.runtime.ktx)
|
||||||
|
|
||||||
/** Compose libraries */
|
/** Compose libraries */
|
||||||
|
api(deps.compose.animation)
|
||||||
|
api(deps.compose.coil)
|
||||||
|
api(deps.compose.foundation)
|
||||||
|
api(deps.decompose.ext.compose)
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.animation)
|
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
implementation(deps.compose.coil)
|
|
||||||
implementation(deps.lottie.compose)
|
|
||||||
implementation(deps.decompose.ext.compose)
|
|
||||||
implementation(deps.androidx.activity.compose)
|
implementation(deps.androidx.activity.compose)
|
||||||
implementation(deps.androidx.datastore)
|
|
||||||
|
|
||||||
/** Other libraries */
|
/** Other libraries */
|
||||||
|
api(deps.kotlin.coroutines)
|
||||||
|
api(deps.kotlin.immutable.collections)
|
||||||
implementation(deps.arrow.core)
|
implementation(deps.arrow.core)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
|
||||||
implementation(deps.kotlin.serialization)
|
implementation(deps.kotlin.serialization)
|
||||||
implementation(deps.firebase.crashlytics)
|
implementation(deps.firebase.crashlytics)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue