-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle.kts
43 lines (37 loc) · 918 Bytes
/
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
import com.android.build.api.dsl.SettingsExtension
pluginManagement {
repositories {
gradlePluginPortal()
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
}
}
plugins {
id("com.gradle.enterprise") version("3.16.1")
id("com.android.settings") version("8.3.1")
}
rootProject.name = "Compose MenuProvider"
include(
":core",
":material3",
)
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
if (System.getenv("CI") == "true") {
termsOfServiceAgree = "yes"
isUploadInBackground = false
}
}
}
configure<SettingsExtension> {
buildToolsVersion = "34.0.0"
compileSdk = 34
minSdk = 28
}