Updated on 2026-08-14

This commit is contained in:
Tangem 2026-05-15 13:06:26 +03:00
parent c2e8cb82a7
commit c428dc5bf5
9 changed files with 148 additions and 0 deletions

View file

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

View file

@ -0,0 +1,5 @@
package com.tangem.features.pushnotificationsettings
interface PushNotificationSettingsFeatureToggles {
val isPushNotificationSettingsEnabled: Boolean
}