-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.gradle.kts
67 lines (59 loc) · 1.39 KB
/
settings.gradle.kts
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
rootProject.name = "emerge-android"
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
}
plugins {
id("com.gradle.develocity") version "3.19.2"
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.1"
id("com.android.settings") version "8.9.0" // Keep in sync with agp in libs.versions.toml
}
val isCI = System.getenv("CI") != null
develocity {
buildScan {
termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
termsOfUseAgree.set("yes")
uploadInBackground = !isCI
}
}
android {
compileSdk = 35
targetSdk = 35
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
":performance",
":performance:performance",
":performance:sample",
":performance:sample:app",
":performance:sample:perftesting",
":reaper",
":reaper:reaper",
":reaper:sample",
":reaper:sample:app",
":reaper:sample:manuallyInitializedApp",
":reaper:sample:stress",
":snapshots",
":snapshots:snapshots",
":snapshots:snapshots-annotations",
":snapshots:snapshots-shared",
":snapshots:sample",
":snapshots:sample:app",
":snapshots:sample:ui-module",
":tools",
":benchmark",
":distribution:distribution",
":distribution:sample",
":distribution:integration",
":distribution:sample:app",
)
includeBuild("gradle-plugin")