Updated on 2026-08-14

This commit is contained in:
Tangem 2025-03-11 18:55:37 +03:00
parent 330ae73357
commit e7efe7b76a
4636 changed files with 234864 additions and 63507 deletions

1
features/tester/api/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/build

View file

@ -0,0 +1,9 @@
plugins {
alias(deps.plugins.android.library)
alias(deps.plugins.kotlin.android)
id("configuration")
}
android {
namespace = "com.tangem.features.tester.api"
}

View file

@ -0,0 +1,14 @@
package com.tangem.features.tester.api
import android.content.Intent
/**
* Outer tester feature router
*
[REDACTED_AUTHOR]
*/
interface TesterRouter {
/** Open tester menu */
fun getEntryIntent(): Intent
}