forked from boswelja/NASdroid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
98 lines (92 loc) · 2.5 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
98 lines (92 loc) · 2.5 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import org.gradle.api.internal.FeaturePreviews
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
}
}
plugins {
id("com.gradle.develocity") version "4.1"
id("com.android.settings") version("8.8.1")
}
enableFeaturePreview(FeaturePreviews.Feature.TYPESAFE_PROJECT_ACCESSORS.name)
rootProject.name = "NASdroid"
include(
":core:api",
":core:compose-logviewer",
":core:compose-segmentedprogressindicator",
":core:design",
":core:navigation",
":core:skeleton",
":core:strong-result",
":features:apps:data",
":features:apps:logic",
":features:apps:ui",
":features:auth:data",
":features:auth:logic",
":features:auth:ui",
":features:credentials:logic",
":features:credentials:ui",
":features:dashboard:data",
":features:dashboard:logic",
":features:dashboard:ui",
":features:dataprotection:logic",
":features:dataprotection:ui",
":features:datasets:logic",
":features:datasets:ui",
":features:network:logic",
":features:network:ui",
":features:power:logic",
":features:power:ui",
":features:reporting:data",
":features:reporting:logic",
":features:reporting:ui",
":features:shares:logic",
":features:shares:ui",
":features:storage:logic",
":features:storage:ui",
":features:systemsettings:logic",
":features:systemsettings:ui",
":features:virtualization:logic",
":features:virtualization:ui",
":app",
":apitester"
)
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
if (System.getenv("CI") == "true") {
termsOfUseAgree = "yes"
uploadInBackground = false
} else {
// Change this to "yes" if you want build scans locally
termsOfUseAgree = "no"
}
}
}
android {
buildToolsVersion = "35.0.0"
compileSdk = 35
targetSdk = 35
minSdk = 28
}