Updated on 2026-08-14
This commit is contained in:
parent
281b5ec956
commit
37efabe359
11 changed files with 454 additions and 0 deletions
1
features/create-wallet-selection/api/.gitignore
vendored
Normal file
1
features/create-wallet-selection/api/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
build/
|
||||
22
features/create-wallet-selection/api/build.gradle.kts
Normal file
22
features/create-wallet-selection/api/build.gradle.kts
Normal 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)
|
||||
}
|
||||
|
|
@ -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>
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue