added DEV version to repo

This commit is contained in:
Fr4nz D13trich 2025-09-18 18:43:03 +02:00
parent 1ef725ef20
commit 23e673bfdf
2135 changed files with 97033 additions and 21206 deletions

View file

@ -2,33 +2,33 @@
* Nextcloud - Android Client
*
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2024 Alper Ozturk <alper_ozturk@proton.me>
* SPDX-FileCopyrightText: 2024 Alper Ozturk <alper.ozturk@nextcloud.com>
* SPDX-FileCopyrightText: 2023 Tobias Kaminsky <tobias@kaminsky.me>
* SPDX-FileCopyrightText: 2022 Álvaro Brey Vilas <alvaro@alvarobrey.com>
* SPDX-FileCopyrightText: 2016 Andy Scherzinger <info@andy-scherzinger.de>
* SPDX-License-Identifier: AGPL-3.0-or-later
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
*/
buildscript {
ext {
androidLibraryVersion = "2.19.1"
androidPluginVersion = '8.3.2'
androidxMediaVersion = '1.3.1'
androidxTestVersion = "1.5.0"
appCompatVersion = '1.6.1'
androidLibraryVersion = "c6eac2850079c82b80a8b2a71d9a2cf353f118a5"
androidCommonLibraryVersion = "0.28.0"
androidPluginVersion = '8.13.0'
androidxMediaVersion = "1.5.1"
androidxTestVersion = "1.7.0"
appCompatVersion = "1.7.1"
checkerVersion = "3.21.2"
daggerVersion = "2.51.1"
documentScannerVersion = "1.1.1"
espressoVersion = "3.5.1"
fidoVersion = "4.1.0-patch2"
jacoco_version = '0.8.12'
kotlin_version = '1.9.23'
daggerVersion = "2.57.1"
documentScannerVersion = "1.2.3"
espressoVersion = "3.6.1"
jacoco_version = "0.8.13"
kotlin_version = "2.2.20"
markwonVersion = "4.6.2"
mockitoVersion = "4.11.0"
mockitoKotlinVersion = "4.1.0"
mockkVersion = "1.13.10"
mockkVersion = "1.14.5"
prismVersion = "2.0.0"
roomVersion = "2.6.1"
workRuntime = "2.9.0"
roomVersion = "2.8.0"
workRuntime = "2.10.3"
ciBuild = System.getenv("CI") == "true"
shotTest = System.getenv("SHOT_TEST") == "true"
@ -38,30 +38,30 @@ buildscript {
subprojects {
buildscript {
repositories {
gradlePluginPortal()
google()
mavenCentral()
gradlePluginPortal()
}
}
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url = "https://jitpack.io" }
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
tasks.register("clean", Delete) {
delete rootProject.layout.buildDirectory
}
tasks.register('installGitHooks', Copy) {
tasks.register("installGitHooks", Copy) {
def sourceFolder = "${rootProject.projectDir}/scripts/hooks"
def destFolder = "${rootProject.projectDir}/.git/hooks"
description = "Install git hooks"
from(sourceFolder) {
include '*'
include "*"
}
into destFolder