Merge pull request #3053 from element-hq/feature/bma/callSettings

Alert for incoming call even if notifications are disabled - WAITING FOR FINAL PRODUCT DECISION
This commit is contained in:
Benoit Marty 2024-06-28 14:21:23 +02:00 committed by GitHub
commit f6fe030d6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 95 additions and 98 deletions

View file

@ -28,6 +28,7 @@ anvil {
}
dependencies {
implementation(libs.androidx.annotationjvm)
implementation(libs.dagger)
implementation(projects.libraries.di)
implementation(projects.libraries.matrix.api)

View file

@ -16,6 +16,9 @@
package io.element.android.appconfig
import android.graphics.Color
import androidx.annotation.ColorInt
object NotificationConfig {
// TODO EAx Implement and set to true at some point
const val SUPPORT_MARK_AS_READ_ACTION = false
@ -25,4 +28,7 @@ object NotificationConfig {
// TODO EAx Implement and set to true at some point
const val SUPPORT_QUICK_REPLY_ACTION = false
@ColorInt
val NOTIFICATION_ACCENT_COLOR: Int = Color.parseColor("#FF0DBD8B")
}