Updated on 2026-08-14
This commit is contained in:
parent
505413483e
commit
f1342cfeb1
19 changed files with 241 additions and 255 deletions
|
|
@ -11,13 +11,12 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/** Common */
|
|
||||||
implementation(projects.common.ui)
|
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.models)
|
||||||
|
|
||||||
|
/** Runtime */
|
||||||
|
runtimeOnly(deps.room.runtime)
|
||||||
}
|
}
|
||||||
|
|
@ -9,22 +9,21 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
/** Kotlin */
|
||||||
|
api(deps.kotlin.coroutines)
|
||||||
|
api(deps.kotlin.immutable.collections)
|
||||||
|
|
||||||
/** Project - Core */
|
/** Project - Core */
|
||||||
implementation(projects.core.ui)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.ui)
|
||||||
|
|
||||||
/** Domain models */
|
/** Domain models */
|
||||||
api(projects.domain.models)
|
api(projects.domain.models)
|
||||||
api(projects.domain.txhistory)
|
api(projects.domain.txhistory)
|
||||||
implementation(projects.domain.tokens.models)
|
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
|
|
||||||
/** Compose */
|
/** Compose */
|
||||||
|
api(deps.compose.foundation)
|
||||||
implementation(deps.compose.runtime)
|
implementation(deps.compose.runtime)
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
|
|
||||||
/** Other */
|
|
||||||
implementation(deps.kotlin.immutable.collections)
|
|
||||||
}
|
}
|
||||||
|
|
@ -17,62 +17,66 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
/* Project - API */
|
/** Core */
|
||||||
implementation(projects.features.txhistory.api)
|
api(projects.core.configToggles)
|
||||||
|
api(projects.core.decompose)
|
||||||
/* Project - Core */
|
api(projects.core.navigation)
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.ui)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.utils)
|
||||||
implementation(projects.core.utils)
|
|
||||||
implementation(projects.common.routing)
|
|
||||||
implementation(projects.common.ui)
|
|
||||||
implementation(projects.core.configToggles)
|
|
||||||
implementation(projects.core.analytics)
|
|
||||||
implementation(projects.core.pagination)
|
implementation(projects.core.pagination)
|
||||||
implementation(projects.core.navigation)
|
|
||||||
|
|
||||||
/* Project - Domain */
|
/** Common */
|
||||||
implementation(projects.domain.models)
|
api(projects.common.ui)
|
||||||
implementation(projects.domain.legacy)
|
|
||||||
implementation(projects.domain.card)
|
/** Features api */
|
||||||
implementation(projects.domain.txhistory)
|
api(projects.features.txhistory.api)
|
||||||
implementation(projects.domain.txhistory.models)
|
|
||||||
implementation(projects.domain.wallets)
|
/** Domain */
|
||||||
implementation(projects.domain.wallets.models)
|
api(projects.domain.account.status)
|
||||||
implementation(projects.domain.tokens)
|
api(projects.domain.balanceHiding)
|
||||||
implementation(projects.domain.tokens.models)
|
api(projects.domain.common)
|
||||||
implementation(projects.domain.balanceHiding)
|
api(projects.domain.models)
|
||||||
|
api(projects.domain.staking)
|
||||||
|
api(projects.domain.txhistory)
|
||||||
|
api(projects.domain.wallets)
|
||||||
|
implementation(projects.domain.account)
|
||||||
implementation(projects.domain.balanceHiding.models)
|
implementation(projects.domain.balanceHiding.models)
|
||||||
implementation(projects.domain.account.status)
|
implementation(projects.domain.express.models)
|
||||||
implementation(projects.domain.onramp.models)
|
implementation(projects.domain.onramp.models)
|
||||||
implementation(projects.domain.staking)
|
|
||||||
implementation(projects.domain.staking.models)
|
implementation(projects.domain.staking.models)
|
||||||
|
implementation(projects.domain.tokens.models)
|
||||||
|
implementation(projects.domain.txhistory.models)
|
||||||
|
runtimeOnly(projects.domain.card)
|
||||||
|
runtimeOnly(projects.domain.tokens)
|
||||||
|
|
||||||
/* AndroidX */
|
/** Compose */
|
||||||
implementation(deps.androidx.activity.compose)
|
api(deps.compose.foundation)
|
||||||
implementation(deps.lifecycle.compose)
|
implementation(deps.compose.material3)
|
||||||
|
|
||||||
/* Compose */
|
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
implementation(deps.compose.foundation)
|
implementation(deps.decompose.ext.compose)
|
||||||
implementation(deps.compose.material3)
|
|
||||||
implementation(deps.compose.shimmer)
|
|
||||||
|
|
||||||
/* DI */
|
/** AndroidX */
|
||||||
|
implementation(deps.androidx.annotation)
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.lifecycle.compose)
|
||||||
|
|
||||||
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/* Other */
|
/** Other */
|
||||||
implementation(deps.arrow.core)
|
implementation(deps.arrow.core)
|
||||||
|
implementation(deps.jodatime)
|
||||||
|
implementation(deps.kotlin.coroutines)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
implementation(deps.kotlin.immutable.collections)
|
||||||
implementation(deps.decompose.ext.compose)
|
|
||||||
|
|
||||||
/* Tests */
|
/** Test */
|
||||||
testImplementation(projects.common.test)
|
testImplementation(projects.common.test)
|
||||||
testImplementation(projects.test.core)
|
testImplementation(projects.test.core)
|
||||||
testImplementation(projects.test.mock)
|
testImplementation(projects.test.mock)
|
||||||
testImplementation(projects.domain.onramp.models)
|
testImplementation(projects.domain.express.models)
|
||||||
|
testImplementation(deps.kotlin.coroutines)
|
||||||
testImplementation(deps.test.junit5)
|
testImplementation(deps.test.junit5)
|
||||||
testImplementation(deps.test.mockk)
|
testImplementation(deps.test.mockk)
|
||||||
testImplementation(deps.test.truth)
|
testImplementation(deps.test.truth)
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,8 @@ android {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
/** 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)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -11,22 +11,19 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.ui)
|
api(projects.core.analytics)
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.datasource)
|
||||||
implementation(projects.core.utils)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.navigation)
|
api(projects.core.utils)
|
||||||
implementation(projects.common.routing)
|
implementation(projects.core.analytics.models)
|
||||||
implementation(projects.features.usedesk.api)
|
|
||||||
|
|
||||||
/** Core */
|
/** Features api */
|
||||||
implementation(projects.core.datasource)
|
api(projects.features.usedesk.api)
|
||||||
implementation(projects.core.analytics)
|
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.feedback)
|
api(projects.domain.feedback)
|
||||||
implementation(projects.domain.settings)
|
api(projects.domain.settings)
|
||||||
|
|
||||||
/** DI */
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
|
|
@ -36,9 +33,18 @@ dependencies {
|
||||||
implementation(deps.compose.foundation)
|
implementation(deps.compose.foundation)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
|
|
||||||
|
/** AndroidX */
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.androidx.core)
|
||||||
|
implementation(deps.androidx.fragment)
|
||||||
|
implementation(deps.lifecycle.compose)
|
||||||
|
implementation(deps.lifecycle.runtime.ktx)
|
||||||
|
|
||||||
|
/** Other */
|
||||||
|
implementation(deps.decompose)
|
||||||
|
implementation(deps.kotlin.coroutines)
|
||||||
|
|
||||||
/** Usedesk */
|
/** Usedesk */
|
||||||
implementation(tangemDeps.usedesk.chat.sdk)
|
implementation(tangemDeps.usedesk.chat.sdk)
|
||||||
implementation(tangemDeps.usedesk.chat.gui)
|
implementation(tangemDeps.usedesk.chat.gui)
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -15,7 +15,4 @@ dependencies {
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
api(projects.domain.models)
|
api(projects.domain.models)
|
||||||
|
|
||||||
/** Compose */
|
|
||||||
implementation(deps.compose.runtime)
|
|
||||||
}
|
}
|
||||||
|
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
@ -12,9 +12,9 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.res)
|
|
||||||
implementation(projects.core.ui)
|
implementation(projects.core.ui)
|
||||||
|
implementation(projects.core.utils)
|
||||||
|
|
||||||
/** Common */
|
/** Common */
|
||||||
implementation(projects.common.ui)
|
implementation(projects.common.ui)
|
||||||
|
|
@ -23,11 +23,16 @@ dependencies {
|
||||||
implementation(projects.features.virtualAccounts.main.api)
|
implementation(projects.features.virtualAccounts.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)
|
||||||
|
|
||||||
|
/** Other */
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
|
implementation(deps.decompose)
|
||||||
|
implementation(deps.kotlin.coroutines)
|
||||||
|
|
||||||
/** DI */
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
|
||||||
|
|
@ -10,12 +10,9 @@ 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 */
|
|
||||||
implementation(deps.compose.runtime)
|
|
||||||
}
|
}
|
||||||
|
|
@ -12,22 +12,21 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
|
api(projects.core.utils)
|
||||||
implementation(projects.core.error)
|
implementation(projects.core.error)
|
||||||
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)
|
|
||||||
|
|
||||||
/** Api */
|
/** Api */
|
||||||
implementation(projects.features.virtualAccounts.onboarding.api)
|
api(projects.features.virtualAccounts.onboarding.api)
|
||||||
|
|
||||||
/** Domain */
|
/** Domain */
|
||||||
implementation(projects.domain.common)
|
api(projects.domain.common)
|
||||||
|
api(projects.domain.visa)
|
||||||
implementation(projects.domain.models)
|
implementation(projects.domain.models)
|
||||||
implementation(projects.domain.visa)
|
|
||||||
|
|
||||||
/** Compose */
|
/** Compose */
|
||||||
implementation(deps.compose.foundation)
|
implementation(deps.compose.foundation)
|
||||||
|
|
@ -41,5 +40,9 @@ dependencies {
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/** Other */
|
/** Other */
|
||||||
|
implementation(deps.androidx.appCompat)
|
||||||
implementation(deps.arrow.core)
|
implementation(deps.arrow.core)
|
||||||
|
implementation(deps.kotlin.coroutines)
|
||||||
|
implementation(deps.lifecycle.compose)
|
||||||
|
implementation(deps.lifecycle.runtime.ktx)
|
||||||
}
|
}
|
||||||
|
|
@ -11,12 +11,9 @@ android {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
/* Project - Domain */
|
/* Project - Domain */
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.models)
|
||||||
|
|
||||||
/* 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)
|
|
||||||
}
|
}
|
||||||
|
|
@ -14,58 +14,51 @@ android {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
/* Project - API */
|
/* Project - API */
|
||||||
implementation(projects.features.walletSettings.api)
|
api(projects.features.hotWallet.api)
|
||||||
implementation(projects.features.manageTokens.api)
|
api(projects.features.pushNotificationSettings.api)
|
||||||
implementation(projects.features.nft.api)
|
api(projects.features.wallet.api)
|
||||||
implementation(projects.features.onboardingV2.api)
|
api(projects.features.walletSettings.api)
|
||||||
implementation(projects.features.pushNotifications.api)
|
implementation(projects.features.pushNotifications.api)
|
||||||
implementation(projects.features.pushNotificationSettings.api)
|
|
||||||
implementation(projects.features.hotWallet.api)
|
|
||||||
implementation(projects.features.wallet.api)
|
|
||||||
|
|
||||||
/* Project - Core */
|
/* Project - Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.analytics)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.datasource)
|
||||||
implementation(projects.core.configToggles)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.navigation)
|
api(projects.core.navigation)
|
||||||
implementation(projects.core.analytics)
|
api(projects.core.utils)
|
||||||
implementation(projects.core.utils)
|
|
||||||
implementation(projects.core.analytics.models)
|
implementation(projects.core.analytics.models)
|
||||||
implementation(projects.core.datasource)
|
implementation(projects.core.ui)
|
||||||
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.appCurrency)
|
api(projects.domain.account.status)
|
||||||
|
api(projects.domain.appCurrency)
|
||||||
|
api(projects.domain.assetsdiscovery)
|
||||||
|
api(projects.domain.balanceHiding)
|
||||||
|
api(projects.domain.demo)
|
||||||
|
api(projects.domain.nft)
|
||||||
|
api(projects.domain.notifications)
|
||||||
|
api(projects.domain.settings)
|
||||||
|
api(projects.domain.wallets)
|
||||||
implementation(projects.domain.appCurrency.models)
|
implementation(projects.domain.appCurrency.models)
|
||||||
implementation(projects.domain.balanceHiding)
|
|
||||||
implementation(projects.domain.balanceHiding.models)
|
|
||||||
implementation(projects.domain.legacy)
|
|
||||||
implementation(projects.domain.card)
|
implementation(projects.domain.card)
|
||||||
|
implementation(projects.domain.common)
|
||||||
implementation(projects.domain.models)
|
implementation(projects.domain.models)
|
||||||
implementation(projects.domain.wallets)
|
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
implementation(projects.domain.demo)
|
|
||||||
implementation(projects.domain.nft)
|
|
||||||
implementation(projects.domain.settings)
|
|
||||||
implementation(projects.domain.notifications.models)
|
implementation(projects.domain.notifications.models)
|
||||||
implementation(projects.domain.notifications)
|
implementation(projects.domain.wallets.models)
|
||||||
implementation(projects.domain.assetsdiscovery)
|
|
||||||
|
|
||||||
/* AndroidX */
|
/* AndroidX */
|
||||||
implementation(deps.androidx.fragment.ktx)
|
implementation(deps.androidx.appCompat)
|
||||||
implementation(deps.androidx.activity.compose)
|
|
||||||
implementation(deps.lifecycle.compose)
|
implementation(deps.lifecycle.compose)
|
||||||
|
|
||||||
/* Compose */
|
/* Compose */
|
||||||
|
api(deps.compose.foundation)
|
||||||
|
api(deps.decompose.ext.compose)
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
implementation(deps.compose.accompanist.systemUiController)
|
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.shimmer)
|
|
||||||
implementation(deps.decompose.ext.compose)
|
|
||||||
implementation(deps.compose.reorderableV2)
|
implementation(deps.compose.reorderableV2)
|
||||||
|
|
||||||
/* DI */
|
/* DI */
|
||||||
|
|
@ -73,7 +66,10 @@ dependencies {
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/* Other */
|
/* Other */
|
||||||
|
implementation(deps.arrow.core)
|
||||||
|
implementation(deps.kotlin.coroutines)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
implementation(deps.kotlin.immutable.collections)
|
||||||
|
implementation(deps.kotlin.serialization.core)
|
||||||
|
|
||||||
/** Tangem libraries */
|
/** Tangem libraries */
|
||||||
implementation(tangemDeps.hot.core)
|
implementation(tangemDeps.hot.core)
|
||||||
|
|
|
||||||
|
|
@ -9,21 +9,19 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** AndroidX */
|
|
||||||
implementation(deps.androidx.fragment.ktx)
|
|
||||||
|
|
||||||
/** Project - Domain */
|
/** Project - Domain */
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.models)
|
||||||
implementation(projects.domain.visa.models)
|
api(projects.domain.visa.models)
|
||||||
|
|
||||||
/** Tangem libraries */
|
/** Tangem libraries */
|
||||||
implementation(tangemDeps.card.core)
|
api(tangemDeps.card.core)
|
||||||
|
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.common.ui)
|
api(projects.common.ui)
|
||||||
|
|
||||||
/** Other */
|
/** Other */
|
||||||
|
api(deps.kotlin.coroutines)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
implementation(deps.kotlin.immutable.collections)
|
||||||
}
|
}
|
||||||
|
|
@ -20,30 +20,29 @@ android {
|
||||||
dependencies {
|
dependencies {
|
||||||
/** 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.compose)
|
||||||
implementation(deps.material)
|
|
||||||
|
|
||||||
/** Compose */
|
/** Compose */
|
||||||
implementation(deps.compose.accompanist.systemUiController)
|
api(deps.compose.coil)
|
||||||
implementation(deps.compose.coil)
|
api(deps.compose.foundation)
|
||||||
implementation(deps.compose.constraintLayout)
|
|
||||||
implementation(deps.compose.foundation)
|
|
||||||
implementation(deps.compose.material3)
|
implementation(deps.compose.material3)
|
||||||
implementation(deps.compose.paging)
|
implementation(deps.compose.paging)
|
||||||
implementation(deps.compose.reorderable)
|
implementation(deps.compose.reorderable)
|
||||||
implementation(deps.compose.reorderableV2)
|
implementation(deps.compose.reorderableV2)
|
||||||
implementation(deps.compose.shimmer)
|
|
||||||
implementation(deps.compose.ui)
|
implementation(deps.compose.ui)
|
||||||
implementation(deps.compose.ui.tooling)
|
implementation(deps.compose.ui.tooling)
|
||||||
|
|
||||||
/** Other libraries */
|
/** Other libraries */
|
||||||
|
api(deps.kotlin.coroutines)
|
||||||
|
api(deps.kotlin.immutable.collections)
|
||||||
|
api(deps.kotlin.serialization.core)
|
||||||
implementation(deps.arrow.core)
|
implementation(deps.arrow.core)
|
||||||
implementation(deps.decompose.ext.compose)
|
implementation(deps.decompose.ext.compose)
|
||||||
implementation(deps.googlePlay.review)
|
|
||||||
implementation(deps.jodatime)
|
implementation(deps.jodatime)
|
||||||
implementation(deps.kotlin.immutable.collections)
|
|
||||||
implementation(tangemDeps.hot.core)
|
implementation(tangemDeps.hot.core)
|
||||||
implementation(tangemDeps.card.core)
|
api(tangemDeps.card.core)
|
||||||
implementation(tangemDeps.blockchain)
|
implementation(tangemDeps.blockchain)
|
||||||
implementation(deps.firebase.perf) {
|
implementation(deps.firebase.perf) {
|
||||||
exclude(group = "com.google.firebase", module = "protolite-well-known-types")
|
exclude(group = "com.google.firebase", module = "protolite-well-known-types")
|
||||||
|
|
@ -54,117 +53,107 @@ dependencies {
|
||||||
exclude(module = "activity")
|
exclude(module = "activity")
|
||||||
exclude(module = "activity-ktx")
|
exclude(module = "activity-ktx")
|
||||||
}
|
}
|
||||||
implementation(deps.haze.materials) {
|
runtimeOnly(deps.material)
|
||||||
exclude(module = "activity-compose")
|
|
||||||
exclude(module = "activity")
|
|
||||||
exclude(module = "activity-ktx")
|
|
||||||
}
|
|
||||||
|
|
||||||
/** DI */
|
/** DI */
|
||||||
implementation(deps.hilt.android)
|
implementation(deps.hilt.android)
|
||||||
kapt(deps.hilt.kapt)
|
kapt(deps.hilt.kapt)
|
||||||
|
|
||||||
/** Core modules */
|
/** Core modules */
|
||||||
implementation(projects.core.configToggles)
|
api(projects.core.analytics)
|
||||||
implementation(projects.core.navigation)
|
api(projects.core.analytics.models)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.configToggles)
|
||||||
implementation(projects.core.utils)
|
api(projects.core.datasource)
|
||||||
implementation(projects.core.analytics)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.analytics.models)
|
api(projects.core.navigation)
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.ui)
|
||||||
implementation(projects.core.datasource)
|
api(projects.core.utils)
|
||||||
implementation(projects.core.res)
|
implementation(projects.core.res)
|
||||||
implementation(projects.core.error)
|
|
||||||
|
|
||||||
implementation(projects.libs.crypto)
|
implementation(projects.libs.crypto)
|
||||||
implementation(projects.libs.blockchainSdk)
|
implementation(projects.libs.blockchainSdk)
|
||||||
|
|
||||||
/** Domain modules */
|
/** Domain modules */
|
||||||
implementation(projects.domain.account)
|
api(projects.domain.account)
|
||||||
implementation(projects.domain.account.status)
|
api(projects.domain.account.status)
|
||||||
implementation(projects.domain.addressBook)
|
api(projects.domain.addressBook)
|
||||||
implementation(projects.domain.analytics)
|
api(projects.domain.analytics)
|
||||||
implementation(projects.domain.appCurrency)
|
api(projects.domain.appCurrency)
|
||||||
|
api(projects.domain.appTheme)
|
||||||
|
api(projects.domain.assetsdiscovery)
|
||||||
|
api(projects.domain.balanceHiding)
|
||||||
|
api(projects.domain.card)
|
||||||
|
api(projects.domain.common)
|
||||||
|
api(projects.domain.demo)
|
||||||
|
api(projects.domain.feedback)
|
||||||
|
api(projects.domain.hotWallet)
|
||||||
|
api(projects.domain.legacy)
|
||||||
|
api(projects.domain.models)
|
||||||
|
api(projects.domain.networks)
|
||||||
|
api(projects.domain.nft)
|
||||||
|
api(projects.domain.notifications)
|
||||||
|
api(projects.domain.offramp)
|
||||||
|
api(projects.domain.onramp)
|
||||||
|
api(projects.domain.pushNotificationPreferences)
|
||||||
|
api(projects.domain.qrScanning)
|
||||||
|
api(projects.domain.quotes)
|
||||||
|
api(projects.domain.settings)
|
||||||
|
api(projects.domain.staking)
|
||||||
|
api(projects.domain.stories)
|
||||||
|
api(projects.domain.tokens)
|
||||||
|
api(projects.domain.tokens.models)
|
||||||
|
api(projects.domain.transaction)
|
||||||
|
api(projects.domain.txhistory)
|
||||||
|
api(projects.domain.visa)
|
||||||
|
api(projects.domain.walletConnect)
|
||||||
|
api(projects.domain.walletManager)
|
||||||
|
api(projects.domain.wallets)
|
||||||
|
api(projects.domain.wallets.models)
|
||||||
|
api(projects.domain.yieldSupply)
|
||||||
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.walletManager)
|
|
||||||
implementation(projects.domain.demo)
|
|
||||||
implementation(projects.domain.feedback)
|
|
||||||
implementation(projects.domain.feedback.models)
|
|
||||||
implementation(projects.domain.legacy)
|
|
||||||
implementation(projects.domain.markets.models)
|
|
||||||
implementation(projects.domain.models)
|
|
||||||
implementation(projects.domain.networks)
|
|
||||||
implementation(projects.domain.qrScanning)
|
|
||||||
implementation(projects.domain.qrScanning.models)
|
|
||||||
implementation(projects.domain.walletConnect)
|
|
||||||
implementation(projects.domain.walletConnect.models)
|
|
||||||
implementation(projects.domain.nft)
|
|
||||||
implementation(projects.domain.nft.models)
|
|
||||||
implementation(projects.domain.hotWallet)
|
|
||||||
implementation(projects.domain.offramp)
|
|
||||||
implementation(projects.domain.onramp)
|
|
||||||
implementation(projects.domain.onramp.models)
|
|
||||||
implementation(projects.domain.stories)
|
|
||||||
implementation(projects.domain.stories.models)
|
|
||||||
implementation(projects.domain.quotes)
|
|
||||||
implementation(projects.domain.settings)
|
|
||||||
implementation(projects.domain.staking)
|
|
||||||
implementation(projects.domain.staking.models)
|
|
||||||
implementation(projects.domain.tokens)
|
|
||||||
implementation(projects.domain.tokens.models)
|
|
||||||
implementation(projects.domain.txhistory)
|
|
||||||
implementation(projects.domain.txhistory.models)
|
|
||||||
implementation(projects.domain.visa)
|
|
||||||
implementation(projects.domain.wallets)
|
|
||||||
implementation(projects.domain.wallets.models)
|
|
||||||
implementation(projects.domain.notifications)
|
|
||||||
implementation(projects.domain.pushNotificationPreferences)
|
|
||||||
implementation(projects.domain.transaction)
|
|
||||||
implementation(projects.domain.yieldSupply)
|
|
||||||
implementation(projects.domain.yieldSupply.models)
|
|
||||||
implementation(projects.domain.appTheme)
|
|
||||||
implementation(projects.domain.appTheme.models)
|
implementation(projects.domain.appTheme.models)
|
||||||
implementation(projects.domain.assetsdiscovery)
|
implementation(projects.domain.balanceHiding.models)
|
||||||
|
implementation(projects.domain.core)
|
||||||
|
implementation(projects.domain.demo.models)
|
||||||
|
implementation(projects.domain.feedback.models)
|
||||||
|
implementation(projects.domain.markets.models)
|
||||||
|
implementation(projects.domain.nft.models)
|
||||||
|
implementation(projects.domain.onramp.models)
|
||||||
|
implementation(projects.domain.qrScanning.models)
|
||||||
|
implementation(projects.domain.staking.models)
|
||||||
|
implementation(projects.domain.stories.models)
|
||||||
|
implementation(projects.domain.txhistory.models)
|
||||||
|
implementation(projects.domain.visa.models)
|
||||||
|
implementation(projects.domain.walletConnect.models)
|
||||||
|
implementation(projects.domain.yieldSupply.models)
|
||||||
|
|
||||||
/** Feature Apis */
|
/** Feature Apis */
|
||||||
implementation(projects.features.commonFeatures.api)
|
api(projects.features.biometry.api)
|
||||||
implementation(projects.features.account.api)
|
api(projects.features.commonFeatures.api)
|
||||||
implementation(projects.features.details.api)
|
api(projects.features.feed.api)
|
||||||
implementation(projects.features.hotWallet.api)
|
api(projects.features.hotWallet.api)
|
||||||
implementation(projects.features.manageTokens.api)
|
api(projects.features.promoBanners.api)
|
||||||
implementation(projects.features.markets.api)
|
api(projects.features.pushNotifications.api)
|
||||||
implementation(projects.features.onboardingV2.api)
|
api(projects.features.pushNotificationSettings.api)
|
||||||
implementation(projects.features.onramp.api)
|
api(projects.features.send.api)
|
||||||
implementation(projects.features.pushNotifications.api)
|
api(projects.features.tangempay.details.api)
|
||||||
implementation(projects.features.pushNotificationSettings.api)
|
api(projects.features.tangempay.main.api)
|
||||||
implementation(projects.features.swap.api)
|
api(projects.features.tokenRecieve.api)
|
||||||
implementation(projects.features.tester.api)
|
api(projects.features.virtualAccounts.main.api)
|
||||||
implementation(projects.features.tokendetails.api)
|
api(projects.features.wallet.api)
|
||||||
implementation(projects.features.wallet.api)
|
api(projects.features.walletSettings.api)
|
||||||
implementation(projects.features.walletSettings.api)
|
api(projects.features.yieldSupply.api)
|
||||||
implementation(projects.features.biometry.api)
|
|
||||||
implementation(projects.features.nft.api)
|
|
||||||
implementation(projects.features.send.api)
|
|
||||||
implementation(projects.features.kyc.api)
|
|
||||||
implementation(projects.features.tokenRecieve.api)
|
|
||||||
implementation(projects.features.yieldSupply.api)
|
|
||||||
implementation(projects.features.feed.api)
|
|
||||||
implementation(projects.features.promoBanners.api)
|
|
||||||
implementation(projects.features.tangempay.main.api)
|
|
||||||
implementation(projects.features.tangempay.details.api)
|
|
||||||
implementation(projects.features.virtualAccounts.main.api)
|
|
||||||
|
|
||||||
/** Common modules */
|
/** Common modules */
|
||||||
|
api(projects.common.routing)
|
||||||
|
api(projects.common.ui)
|
||||||
implementation(projects.common)
|
implementation(projects.common)
|
||||||
implementation(projects.common.routing)
|
|
||||||
implementation(projects.common.ui)
|
|
||||||
|
|
||||||
/** Test libraries */
|
/** Test libraries */
|
||||||
testImplementation(deps.test.junit5)
|
testImplementation(deps.test.junit5)
|
||||||
testImplementation(deps.test.coroutine)
|
testImplementation(deps.test.coroutine)
|
||||||
testImplementation(deps.test.truth)
|
testImplementation(deps.test.truth)
|
||||||
testImplementation(deps.test.mockk)
|
testImplementation(deps.test.mockk)
|
||||||
|
testImplementation(deps.kotlin.coroutines)
|
||||||
|
testImplementation(projects.domain.core)
|
||||||
}
|
}
|
||||||
|
|
@ -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)
|
||||||
implementation(projects.common.routing)
|
api(projects.common.routing)
|
||||||
|
|
||||||
/** Domain models */
|
/** Domain models */
|
||||||
implementation(projects.domain.models)
|
api(projects.domain.models)
|
||||||
|
|
||||||
/** Compose */
|
|
||||||
implementation(deps.compose.runtime)
|
|
||||||
}
|
}
|
||||||
|
|
@ -10,13 +10,9 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
/** Core */
|
/** Core */
|
||||||
implementation(projects.core.decompose)
|
api(projects.core.decompose)
|
||||||
implementation(projects.core.ui)
|
api(projects.core.ui)
|
||||||
implementation(projects.common.routing)
|
|
||||||
|
|
||||||
/** Domain models */
|
/** Other */
|
||||||
implementation(projects.domain.wallets.models)
|
runtimeOnly(deps.room.runtime)
|
||||||
|
|
||||||
/** Compose */
|
|
||||||
implementation(deps.compose.runtime)
|
|
||||||
}
|
}
|
||||||
|
|
@ -3,5 +3,5 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(deps.detekt.api)
|
api(deps.detekt.api)
|
||||||
}
|
}
|
||||||
|
|
@ -4,9 +4,10 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(projects.core.utils)
|
api(projects.core.utils)
|
||||||
implementation(projects.domain.core)
|
api(projects.domain.core)
|
||||||
implementation(deps.arrow.core)
|
api(deps.arrow.core)
|
||||||
|
api(deps.kotlin.coroutines)
|
||||||
|
|
||||||
api(deps.androidx.datastore.core)
|
api(deps.androidx.datastore.core)
|
||||||
api(deps.test.coroutine)
|
api(deps.test.coroutine)
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(projects.domain.account)
|
api(projects.domain.account)
|
||||||
|
api(projects.domain.models)
|
||||||
|
implementation(deps.arrow.core)
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue