Updated on 2026-08-14

This commit is contained in:
Tangem 2025-02-25 13:21:07 +03:00
parent 74f71080ea
commit c70afd815e
15 changed files with 112 additions and 119 deletions

View file

@ -9,10 +9,11 @@ android {
}
dependencies {
/** AndroidX */
implementation(deps.androidx.fragment.ktx)
/** Core */
implementation(projects.core.decompose)
implementation(projects.core.ui)
implementation(projects.core.analytics.models)
}

View file

@ -0,0 +1,9 @@
package com.tangem.features.pushnotifications.api
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.ui.decompose.ComposableContentComponent
interface PushNotificationsComponent : ComposableContentComponent {
interface Factory : ComponentFactory<Unit, PushNotificationsComponent>
}

View file

@ -1,8 +0,0 @@
package com.tangem.features.pushnotifications.api.navigation
import androidx.fragment.app.Fragment
interface PushNotificationsRouter {
fun entryFragment(): Fragment
}