-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
54 lines (49 loc) · 1.49 KB
/
settings.gradle.kts
File metadata and controls
54 lines (49 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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")