Updated on 2026-08-14
This commit is contained in:
parent
2cbaf822cf
commit
ff024393f9
8 changed files with 55 additions and 10 deletions
1
core/security/.gitignore
vendored
Normal file
1
core/security/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
4
core/security/build.gradle.kts
Normal file
4
core/security/build.gradle.kts
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
plugins {
|
||||
alias(deps.plugins.kotlin.jvm)
|
||||
id("configuration")
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
package com.tangem.security
|
||||
|
||||
interface DeviceSecurityInfoProvider {
|
||||
val isRooted: Boolean
|
||||
val isBootloaderUnlocked: Boolean
|
||||
val isXposed: Boolean
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue