Updated on 2026-08-14

This commit is contained in:
Tangem 2025-06-03 21:07:28 +04:00
parent 5aff097e3e
commit 84802cb6e2
14 changed files with 132 additions and 18 deletions

View file

@ -24,4 +24,9 @@ interface PermissionRepository {
* Permanently deny [permission] and never request again
*/
suspend fun neverAskPermission(permission: String)
/**
* Return is [permission] granted or not.
*/
fun hasRuntimePermission(permission: String): Boolean
}