Updated on 2026-08-14
This commit is contained in:
parent
f0d95b079a
commit
ce360d9c2b
7 changed files with 58 additions and 1 deletions
|
|
@ -24,6 +24,7 @@ dependencies {
|
|||
implementation(project(":libs:auth"))
|
||||
|
||||
/** Features */
|
||||
implementation(project(":features:onboarding"))
|
||||
implementation(project(":features:referral:presentation"))
|
||||
implementation(project(":features:referral:domain"))
|
||||
implementation(project(":features:referral:data"))
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit c714678d9c46dee1b15ef9e8d27aa23afa1dfd8d
|
||||
Subproject commit f5f6ac954894ef66331db8fe383b9773feb69ef4
|
||||
1
features/onboarding/.gitignore
vendored
Normal file
1
features/onboarding/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
51
features/onboarding/build.gradle.kts
Normal file
51
features/onboarding/build.gradle.kts
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
plugins {
|
||||
alias(deps.plugins.android.library)
|
||||
alias(deps.plugins.kotlin.android)
|
||||
alias(deps.plugins.kotlin.kapt)
|
||||
alias(deps.plugins.kotlin.serialization)
|
||||
alias(deps.plugins.hilt.android)
|
||||
id("configuration")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
/** Core modules */
|
||||
implementation(project(":core:featuretoggles"))
|
||||
implementation(project(":core:datasource"))
|
||||
implementation(project(":core:analytics"))
|
||||
implementation(project(":core:utils"))
|
||||
implementation(project(":core:ui"))
|
||||
implementation(project(":core:res"))
|
||||
|
||||
/** AndroidX libraries */
|
||||
implementation(deps.androidx.core.ktx)
|
||||
implementation(deps.androidx.appCompat)
|
||||
implementation(deps.androidx.fragment.ktx)
|
||||
implementation(deps.androidx.constraintLayout)
|
||||
implementation(deps.androidx.activity.compose)
|
||||
implementation(deps.lifecycle.runtime.ktx)
|
||||
implementation(deps.lifecycle.common.java8)
|
||||
implementation(deps.lifecycle.viewModel.ktx)
|
||||
|
||||
/** Compose libraries */
|
||||
implementation(deps.compose.material)
|
||||
implementation(deps.compose.animation)
|
||||
implementation(deps.compose.foundation)
|
||||
implementation(deps.compose.ui)
|
||||
implementation(deps.compose.ui.tooling)
|
||||
implementation(deps.compose.coil)
|
||||
implementation(deps.compose.shimmer)
|
||||
|
||||
implementation(deps.tangem.card.core)
|
||||
// implementation(deps.tangem.card.android) {
|
||||
// exclude(module = "joda-time")
|
||||
// }
|
||||
|
||||
/** Other libraries */
|
||||
implementation(deps.compose.shimmer)
|
||||
implementation(deps.kotlin.serialization)
|
||||
implementation(deps.timber)
|
||||
|
||||
/** DI */
|
||||
implementation(deps.hilt.android)
|
||||
kapt(deps.hilt.kapt)
|
||||
}
|
||||
2
features/onboarding/src/main/AndroidManifest.xml
Normal file
2
features/onboarding/src/main/AndroidManifest.xml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="com.tangem.feature.onboarding" />
|
||||
|
|
@ -20,6 +20,7 @@ internal fun BaseExtension.configureCompilerOptions() {
|
|||
internal fun BaseExtension.configureCompose(project: Project) {
|
||||
val useCompose = with(project.path) {
|
||||
contains(":ui") ||
|
||||
contains(":onboarding") ||
|
||||
contains(":presentation") ||
|
||||
contains(":app") || // TODO: [REDACTED_JIRA]
|
||||
contains(":tester:impl") // TODO: Rename module
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@ include(":libs:auth")
|
|||
// endregion Libs modules
|
||||
|
||||
// region Feature modules
|
||||
include(":features:onboarding")
|
||||
include(":features:referral:data")
|
||||
include(":features:referral:domain")
|
||||
include(":features:referral:presentation")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue