Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-05 15:12:57 +01:00
parent 4e05219c25
commit fd2fcc4735
22 changed files with 1114 additions and 4 deletions

1
features/address-book/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.addressbook.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,5 @@
package com.tangem.features.addressbook
interface AddressBookFeatureToggles {
val isAddressBookEnabled: Boolean
}