-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathsettings.gradle
More file actions
33 lines (29 loc) · 621 Bytes
/
settings.gradle
File metadata and controls
33 lines (29 loc) · 621 Bytes
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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins {
id "org.gradle.toolchains.foojay-resolver-convention" version "1.0.0"
id "com.gradle.develocity" version "4.3.2"
}
include ':android-library-no-tests'
include ':sample'
include ':sample-kotlin'
include ':sample-flavors-kotlin'
include ':sample-android-library'
includeBuild 'fladle-plugin'
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
}
}
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
termsOfUseAgree = "yes"
}
}