Updated on 2026-08-14

This commit is contained in:
Tangem 2026-03-20 19:10:03 +02:00
parent 13a37269f5
commit 8b75e37e30
6 changed files with 75 additions and 44 deletions

View file

@ -0,0 +1,11 @@
package com.tangem.core.navigation.deeplink
/**
* Routes in-app content links to the appropriate destination.
* - Deep link schemes (e.g. `tangem://`, `wc://`) → handled in-app
* - Web URLs (`https://`) → opened in browser
*/
interface DeeplinkLauncher {
fun launch(link: String)
}