16 lines
384 B
Kotlin
16 lines
384 B
Kotlin
/*
|
|
* Copyright 2023-2025 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 PushConfig {
|
|
/**
|
|
* Note: pusher_app_id cannot exceed 64 chars.
|
|
*/
|
|
const val PUSHER_APP_ID: String = "im.vector.app.android"
|
|
}
|