Updated on 2026-08-14

This commit is contained in:
Tangem 2025-06-24 15:44:11 +05:00
parent 281b5ec956
commit 37efabe359
11 changed files with 454 additions and 0 deletions

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.createwalletselection.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,8 @@
package com.tangem.features.createwalletselection
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.ui.decompose.ComposableContentComponent
interface CreateWalletSelectionComponent : ComposableContentComponent {
interface Factory : ComponentFactory<Unit, CreateWalletSelectionComponent>
}