Updated on 2026-08-14
This commit is contained in:
parent
4e05219c25
commit
fd2fcc4735
22 changed files with 1114 additions and 4 deletions
1
features/address-book/api/.gitignore
vendored
Normal file
1
features/address-book/api/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
build/
|
||||
22
features/address-book/api/build.gradle.kts
Normal file
22
features/address-book/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.addressbook.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,5 @@
|
|||
package com.tangem.features.addressbook
|
||||
|
||||
interface AddressBookFeatureToggles {
|
||||
val isAddressBookEnabled: Boolean
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue