Updated on 2026-08-14

This commit is contained in:
Tangem 2025-06-23 11:56:00 +03:00
parent 929317d15c
commit 12e53a3aa3
24 changed files with 205 additions and 95 deletions

1
features/kyc/api/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

View file

@ -0,0 +1,22 @@
plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.features.kyc.api"
}
dependencies {
/* Project - Domain */
implementation(projects.domain.models)
/* Project - Core */
implementation(projects.core.decompose)
implementation(projects.core.ui)
/* Compose */
implementation(deps.compose.runtime)
}

View file

@ -0,0 +1,12 @@
package com.tangem.features.kyc
import com.tangem.core.decompose.context.AppComponentContext
interface KycComponent {
fun launch()
interface Factory {
fun create(appComponentContext: AppComponentContext): KycComponent
}
}