main branch updated
This commit is contained in:
parent
3d33d3fe49
commit
9a05dc1657
353 changed files with 16802 additions and 2995 deletions
54
settings.gradle.kts
Normal file
54
settings.gradle.kts
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
/*
|
||||
* Nextcloud - Android Client
|
||||
*
|
||||
* SPDX-FileCopyrightText: 2025 Jimly Asshiddiqy <jimly.asshiddiqy@accenture.com>
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
rootProject.name = "Nextcloud"
|
||||
|
||||
pluginManagement {
|
||||
resolutionStrategy.eachPlugin {
|
||||
if (requested.id.id == "shot") useModule("com.karumi:shot:${requested.version}")
|
||||
}
|
||||
|
||||
repositories {
|
||||
google {
|
||||
content {
|
||||
includeGroupByRegex("com\\.android.*")
|
||||
includeGroupByRegex("com\\.google.*")
|
||||
includeGroupByRegex("androidx.*")
|
||||
}
|
||||
}
|
||||
gradlePluginPortal()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
@Suppress("UnstableApiUsage")
|
||||
dependencyResolutionManagement {
|
||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
repositories {
|
||||
google {
|
||||
content {
|
||||
includeGroupByRegex("com\\.android.*")
|
||||
includeGroupByRegex("com\\.google.*")
|
||||
includeGroupByRegex("androidx.*")
|
||||
}
|
||||
}
|
||||
mavenCentral()
|
||||
maven("https://jitpack.io")
|
||||
}
|
||||
}
|
||||
//includeBuild("../android-common") {
|
||||
// dependencySubstitution {
|
||||
// substitute module("com.github.nextcloud.android-common:ui") using project(":ui")
|
||||
// }
|
||||
//}
|
||||
|
||||
//includeBuild("../android-library") {
|
||||
// dependencySubstitution {
|
||||
// substitute module('com.github.nextcloud:android-library') using project(':library') // broken on gradle 8.14.2, so use 8.13 if needed
|
||||
// }
|
||||
//}
|
||||
|
||||
include(":app", ":appscan")
|
||||
Loading…
Add table
Add a link
Reference in a new issue