Updated on 2026-08-14
This commit is contained in:
parent
a08b715f36
commit
2d1f7a0cd2
18 changed files with 193 additions and 8 deletions
1
features/send/api/.gitignore
vendored
Normal file
1
features/send/api/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
17
features/send/api/build.gradle.kts
Normal file
17
features/send/api/build.gradle.kts
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
plugins {
|
||||
alias(deps.plugins.android.library)
|
||||
alias(deps.plugins.kotlin.android)
|
||||
id("kotlin-parcelize")
|
||||
id("configuration")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.tangem.features.send.api"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(projects.domain.tokens.models)
|
||||
|
||||
/** AndroidX */
|
||||
implementation(deps.androidx.fragment.ktx)
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
package com.tangem.features.send.navigation
|
||||
|
||||
import androidx.fragment.app.Fragment
|
||||
|
||||
interface SendRouter {
|
||||
|
||||
fun getEntryFragment(): Fragment
|
||||
|
||||
companion object {
|
||||
const val CRYPTO_CURRENCY_KEY = "send_crypto_currency"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue