Allow for larger input videos for sending.

This commit is contained in:
Cody Henthorne
2024-07-15 11:07:37 -04:00
committed by Greyson Parrelli
parent 58443c46be
commit 6daee5719b
5 changed files with 39 additions and 6 deletions

View File

@@ -869,6 +869,15 @@ object RemoteConfig {
hotSwappable = true
)
/** Maximum input size when opening a video to send in bytes */
@JvmStatic
@get:JvmName("maxSourceTranscodeVideoSizeBytes")
val maxSourceTranscodeVideoSizeBytes: Long by remoteLong(
key = "android.media.sourceTranscodeVideo.maxBytes",
defaultValue = 500L.mebiBytes.inWholeBytes,
hotSwappable = true
)
const val PROMPT_FOR_NOTIFICATION_LOGS: String = "android.logs.promptNotifications"
@JvmStatic