Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-16 19:27:20 +05:00
parent 220598aff7
commit f9f45e1c8a
8 changed files with 124 additions and 30 deletions

View file

@ -16,4 +16,7 @@ dependencies {
/** Domain models */
implementation(projects.domain.wallets.models)
/** Compose */
implementation(deps.compose.runtime)
}

View file

@ -0,0 +1,10 @@
package com.tangem.features.walletconnect.components.deeplink
import android.net.Uri
interface WalletConnectDeepLinkHandler {
interface Factory {
fun create(uri: Uri): WalletConnectDeepLinkHandler
}
}