2 replace all actions have been performed: - "SPDX-License-Identifier: AGPL-3.0-only" to "SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial" - "Please see LICENSE in the repository root for full details." to "Please see LICENSE files in the repository root for full details."
21 lines
555 B
Kotlin
21 lines
555 B
Kotlin
/*
|
|
* Copyright 2023, 2024 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
package io.element.android.appconfig
|
|
|
|
object ElementCallConfig {
|
|
/**
|
|
* The default base URL for the Element Call service.
|
|
*/
|
|
const val DEFAULT_BASE_URL = "https://call.element.io"
|
|
|
|
/**
|
|
* The default duration of a ringing call in seconds before it's automatically dismissed.
|
|
*/
|
|
const val RINGING_CALL_DURATION_SECONDS = 90
|
|
}
|