Merge tag 'v1.6.30' into sc

tag

Change-Id: I65447b029a4a06268bc0f2110232a427a9274c3a

Conflicts:
	vector-app/src/gplay/java/im/vector/app/nightly/FirebaseNightlyProxy.kt
This commit is contained in:
SpiritCroc 2025-02-04 19:03:51 +01:00
commit 48302d4c12
2461 changed files with 4965 additions and 4919 deletions

View File

@ -1,6 +1,6 @@
<component name="CopyrightManager"> <component name="CopyrightManager">
<copyright> <copyright>
<option name="notice" value="Copyright (c) &amp;#36;today.year New Vector Ltd&#10;&#10;Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);&#10;you may not use this file except in compliance with the License.&#10;You may obtain a copy of the License at&#10;&#10; http://www.apache.org/licenses/LICENSE-2.0&#10;&#10;Unless required by applicable law or agreed to in writing, software&#10;distributed under the License is distributed on an &quot;AS IS&quot; BASIS,&#10;WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.&#10;See the License for the specific language governing permissions and&#10;limitations under the License." /> <option name="notice" value="Copyright &amp;#36;today.year New Vector Ltd.&#10;&#10;SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial&#10;Please see LICENSE files in the repository root for full details." />
<option name="myName" value="NewVector" /> <option name="myName" value="NewVector" />
</copyright> </copyright>
</component> </component>

View File

@ -1,3 +1,13 @@
Changes in Element v1.6.30 (2025-02-04)
=======================================
Dual licensing: AGPL + Element Commercial ([#8990](https://github.com/element-hq/element-android/issues/8990))
Bugfixes 🐛
----------
- Fix incoming call crash on Android 14+. ([#8964](https://github.com/element-hq/element-android/issues/8964))
Changes in Element v1.6.28 (2025-01-13) Changes in Element v1.6.28 (2025-01-13)
======================================= =======================================

6
LICENSE-COMMERCIAL Normal file
View File

@ -0,0 +1,6 @@
Licensees holding a valid commercial license with Element may use this
software in accordance with the terms contained in a written agreement
between you and Element.
To purchase a commercial license please contact our sales team at
licensing@element.io

View File

@ -56,3 +56,14 @@ Issues are triaged by community members and the Android App Team, following the
We use [issue labels](https://github.com/element-hq/element-meta/wiki/Issue-labelling) to sort all incoming issues. We use [issue labels](https://github.com/element-hq/element-meta/wiki/Issue-labelling) to sort all incoming issues.
## Copyright and License
Copyright (c) 2018 - 2025 New Vector Ltd
This software is dual licensed by New Vector Ltd (Element). It can be used either:
(1) for free under the terms of the GNU Affero General Public License (as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version); OR
(2) under the terms of a paid-for Element Commercial License agreement between you and Element (the terms of which may vary depending on what you and Element have agreed to).
Unless required by applicable law or agreed to in writing, software distributed under the Licenses is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Licenses for the specific language governing permissions and limitations under the Licenses.

View File

@ -102,7 +102,7 @@ ext.libs = [
], ],
element : [ element : [
'opusencoder' : "io.element.android:opusencoder:1.1.0", 'opusencoder' : "io.element.android:opusencoder:1.1.0",
'wysiwyg' : "io.element.android:wysiwyg:2.37.4" 'wysiwyg' : "io.element.android:wysiwyg:2.38.2"
], ],
squareup : [ squareup : [
'moshi' : "com.squareup.moshi:moshi:$moshi", 'moshi' : "com.squareup.moshi:moshi:$moshi",

View File

@ -0,0 +1,2 @@
Main changes in this version: Fix incoming call crash on Android 14+.
Full changelog: https://github.com/element-hq/element-android/releases

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
apply plugin: 'com.android.library' apply plugin: 'com.android.library'

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -2,8 +2,8 @@
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* Copyright 2018 stfalcon.com * Copyright 2018 stfalcon.com
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -2,8 +2,8 @@
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* Copyright 2018 stfalcon.com * Copyright 2018 stfalcon.com
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -2,8 +2,8 @@
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* Copyright 2018 stfalcon.com * Copyright 2018 stfalcon.com
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -2,8 +2,8 @@
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* Copyright 2018 stfalcon.com * Copyright 2018 stfalcon.com
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.attachmentviewer package im.vector.lib.attachmentviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
plugins { plugins {

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.compat package im.vector.lib.core.utils.compat

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.compat package im.vector.lib.core.utils.compat

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.epoxy.charsequence package im.vector.lib.core.utils.epoxy.charsequence

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.epoxy.charsequence package im.vector.lib.core.utils.epoxy.charsequence

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.flow package im.vector.lib.core.utils.flow

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2023, 2024 New Vector Ltd. * Copyright 2023, 2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.timer package im.vector.lib.core.utils.timer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.timer package im.vector.lib.core.utils.timer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2023, 2024 New Vector Ltd. * Copyright 2023, 2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.timer package im.vector.lib.core.utils.timer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2023, 2024 New Vector Ltd. * Copyright 2023, 2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.test.fakes package im.vector.lib.core.utils.test.fakes

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2023, 2024 New Vector Ltd. * Copyright 2023, 2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.timer package im.vector.lib.core.utils.timer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2023, 2024 New Vector Ltd. * Copyright 2023, 2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.core.utils.timer package im.vector.lib.core.utils.timer

View File

@ -2,8 +2,8 @@
* Copyright 2024 New Vector Ltd. * Copyright 2024 New Vector Ltd.
* Copyright 2014 The Android Open Source Project * Copyright 2014 The Android Open Source Project
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package com.android.dialer.animation; package com.android.dialer.animation;

View File

@ -2,8 +2,8 @@
* Copyright 2024 New Vector Ltd. * Copyright 2024 New Vector Ltd.
* Copyright 2015 The Android Open Source Project * Copyright 2015 The Android Open Source Project
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package com.android.dialer.compat; package com.android.dialer.compat;

View File

@ -2,8 +2,8 @@
* Copyright 2024 New Vector Ltd. * Copyright 2024 New Vector Ltd.
* Copyright 2012 The Android Open Source Project * Copyright 2012 The Android Open Source Project
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package com.android.dialer.dialpadview; package com.android.dialer.dialpadview;

View File

@ -2,8 +2,8 @@
* Copyright 2024 New Vector Ltd. * Copyright 2024 New Vector Ltd.
* Copyright 2014 The Android Open Source Project * Copyright 2014 The Android Open Source Project
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package com.android.dialer.dialpadview; package com.android.dialer.dialpadview;

View File

@ -2,8 +2,8 @@
* Copyright 2024 New Vector Ltd. * Copyright 2024 New Vector Ltd.
* Copyright 2014 The Android Open Source Project * Copyright 2014 The Android Open Source Project
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package com.android.dialer.dialpadview; package com.android.dialer.dialpadview;

View File

@ -2,8 +2,8 @@
* Copyright 2024 New Vector Ltd. * Copyright 2024 New Vector Ltd.
* Copyright 2011 The Android Open Source Project * Copyright 2011 The Android Open Source Project
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package com.android.dialer.dialpadview; package com.android.dialer.dialpadview;

View File

@ -2,8 +2,8 @@
* Copyright 2024 New Vector Ltd. * Copyright 2024 New Vector Ltd.
* Copyright 2012 The Android Open Source Project * Copyright 2012 The Android Open Source Project
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package com.android.dialer.util; package com.android.dialer.util;

View File

@ -2,8 +2,8 @@
* Copyright 2024 New Vector Ltd. * Copyright 2024 New Vector Ltd.
* Copyright 2014 The Android Open Source Project * Copyright 2014 The Android Open Source Project
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package com.android.dialer.widget; package com.android.dialer.widget;

View File

@ -2,8 +2,8 @@
* Copyright 2024 New Vector Ltd. * Copyright 2024 New Vector Ltd.
* Copyright 2018 The diff-match-patch Authors. * Copyright 2018 The diff-match-patch Authors.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package name.fraser.neil.plaintext; package name.fraser.neil.plaintext;

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package org.billcarsonfr.jsonviewer package org.billcarsonfr.jsonviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package org.billcarsonfr.jsonviewer package org.billcarsonfr.jsonviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package org.billcarsonfr.jsonviewer package org.billcarsonfr.jsonviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package org.billcarsonfr.jsonviewer package org.billcarsonfr.jsonviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package org.billcarsonfr.jsonviewer package org.billcarsonfr.jsonviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package org.billcarsonfr.jsonviewer package org.billcarsonfr.jsonviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package org.billcarsonfr.jsonviewer package org.billcarsonfr.jsonviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package org.billcarsonfr.jsonviewer package org.billcarsonfr.jsonviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package org.billcarsonfr.jsonviewer package org.billcarsonfr.jsonviewer

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
apply plugin: 'com.android.library' apply plugin: 'com.android.library'

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker package im.vector.lib.multipicker

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker package im.vector.lib.multipicker

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker package im.vector.lib.multipicker

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker package im.vector.lib.multipicker

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker package im.vector.lib.multipicker

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker package im.vector.lib.multipicker

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker package im.vector.lib.multipicker

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker package im.vector.lib.multipicker

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker package im.vector.lib.multipicker

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker package im.vector.lib.multipicker

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.entity package im.vector.lib.multipicker.entity

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.entity package im.vector.lib.multipicker.entity

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.entity package im.vector.lib.multipicker.entity

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.entity package im.vector.lib.multipicker.entity

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.entity package im.vector.lib.multipicker.entity

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.entity package im.vector.lib.multipicker.entity

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.entity package im.vector.lib.multipicker.entity

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.provider package im.vector.lib.multipicker.provider

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.utils package im.vector.lib.multipicker.utils

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.utils package im.vector.lib.multipicker.utils

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2020-2024 New Vector Ltd. * Copyright 2020-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.utils package im.vector.lib.multipicker.utils

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2022-2024 New Vector Ltd. * Copyright 2022-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.utils package im.vector.lib.multipicker.utils

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.multipicker.utils package im.vector.lib.multipicker.utils

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2024 New Vector Ltd. * Copyright 2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.strings package im.vector.lib.strings

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
plugins { plugins {

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.debug package im.vector.lib.ui.styles.debug

View File

@ -1,8 +1,8 @@
/* /*
* Copyright 2021-2024 New Vector Ltd. * Copyright 2021-2024 New Vector Ltd.
* *
* SPDX-License-Identifier: AGPL-3.0-only * SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
* Please see LICENSE in the repository root for full details. * Please see LICENSE files in the repository root for full details.
*/ */
package im.vector.lib.ui.styles.dialogs package im.vector.lib.ui.styles.dialogs

View File

@ -62,7 +62,7 @@ android {
// that the app's state is completely cleared between tests. // that the app's state is completely cleared between tests.
testInstrumentationRunnerArguments clearPackageData: 'true' testInstrumentationRunnerArguments clearPackageData: 'true'
buildConfigField "String", "SDK_VERSION", "\"1.6.28\"" buildConfigField "String", "SDK_VERSION", "\"1.6.30\""
buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\"" buildConfigField "String", "GIT_SDK_REVISION", "\"${gitRevision()}\""
buildConfigField "String", "GIT_SDK_REVISION_UNIX_DATE", "\"${gitRevisionUnixDate()}\"" buildConfigField "String", "GIT_SDK_REVISION_UNIX_DATE", "\"${gitRevisionUnixDate()}\""

View File

@ -1,7 +1,7 @@
# Copyright 2021-2024 New Vector Ltd. # Copyright 2021-2024 New Vector Ltd.
# #
# SPDX-License-Identifier: AGPL-3.0-only # SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
# Please see LICENSE in the repository root for full details. # Please see LICENSE files in the repository root for full details.
clean_assemble { clean_assemble {
tasks = ["clean", ":vector:assembleGPlayDebug"] tasks = ["clean", ":vector:assembleGPlayDebug"]

View File

@ -2,8 +2,8 @@
# Copyright 2021-2024 New Vector Ltd. # Copyright 2021-2024 New Vector Ltd.
# #
# SPDX-License-Identifier: AGPL-3.0-only # SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
# Please see LICENSE in the repository root for full details. # Please see LICENSE files in the repository root for full details.
if ! command -v gradle-profiler &> /dev/null if ! command -v gradle-profiler &> /dev/null
then then

View File

@ -2,8 +2,8 @@
# Copyright 2019-2024 New Vector Ltd. # Copyright 2019-2024 New Vector Ltd.
# #
# SPDX-License-Identifier: AGPL-3.0-only # SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
# Please see LICENSE in the repository root for full details. # Please see LICENSE files in the repository root for full details.
####################################################################################################################### #######################################################################################################################
# Check drawable quantity # Check drawable quantity

View File

@ -1,7 +1,7 @@
# Copyright 2018-2024 New Vector Ltd. # Copyright 2018-2024 New Vector Ltd.
# #
# SPDX-License-Identifier: AGPL-3.0-only # SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
# Please see LICENSE in the repository root for full details. # Please see LICENSE files in the repository root for full details.
# This file list String which are not allowed in source code. # This file list String which are not allowed in source code.
# Use Perl regex to write forbidden strings # Use Perl regex to write forbidden strings

View File

@ -1,7 +1,7 @@
# Copyright 2022-2024 New Vector Ltd. # Copyright 2022-2024 New Vector Ltd.
# #
# SPDX-License-Identifier: AGPL-3.0-only # SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
# Please see LICENSE in the repository root for full details. # Please see LICENSE files in the repository root for full details.
### You should not use code from the SDK package `org.matrix.android.sdk.internal`. Either move the code to the package `org.matrix.android.sdk.api`, or add a proper API to access this code, and add `internal` keyword SDK side. ### You should not use code from the SDK package `org.matrix.android.sdk.internal`. Either move the code to the package `org.matrix.android.sdk.api`, or add a proper API to access this code, and add `internal` keyword SDK side.
import org.matrix.android.sdk.internal import org.matrix.android.sdk.internal

View File

@ -1,7 +1,7 @@
# Copyright 2020-2024 New Vector Ltd. # Copyright 2020-2024 New Vector Ltd.
# #
# SPDX-License-Identifier: AGPL-3.0-only # SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
# Please see LICENSE in the repository root for full details. # Please see LICENSE files in the repository root for full details.
# This file list String which are not allowed in source code. # This file list String which are not allowed in source code.
# Use Perl regex to write forbidden strings # Use Perl regex to write forbidden strings

View File

@ -1,7 +1,7 @@
# Copyright 2021-2024 New Vector Ltd. # Copyright 2021-2024 New Vector Ltd.
# #
# SPDX-License-Identifier: AGPL-3.0-only # SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
# Please see LICENSE in the repository root for full details. # Please see LICENSE files in the repository root for full details.
# This file list String which are not allowed in source code. # This file list String which are not allowed in source code.
# Use Perl regex to write forbidden strings # Use Perl regex to write forbidden strings

View File

@ -1,7 +1,7 @@
# Copyright 2018-2024 New Vector Ltd. # Copyright 2018-2024 New Vector Ltd.
# #
# SPDX-License-Identifier: AGPL-3.0-only # SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
# Please see LICENSE in the repository root for full details. # Please see LICENSE files in the repository root for full details.
# This file list String which are not allowed in source code. # This file list String which are not allowed in source code.
# Use Perl regex to write forbidden strings # Use Perl regex to write forbidden strings

Some files were not shown because too many files have changed in this diff Show More