-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
28 lines (25 loc) · 1.13 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
28 lines (25 loc) · 1.13 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
// ============================================================================
// settings.gradle.kts — top-level project configuration
// ============================================================================
// This file tells Gradle which modules make up the project and where plugins
// and dependencies are pulled from. It is evaluated BEFORE any build script.
// ----------------------------------------------------------------------------
pluginManagement {
repositories {
google() // Google's Maven repo hosts Android Gradle Plugin
mavenCentral() // Standard Java/Kotlin library hub
gradlePluginPortal() // Community Gradle plugins
}
}
dependencyResolutionManagement {
// Force all project dependencies to come from the repos declared here.
// FAIL_ON_PROJECT_REPOS prevents a sub-module from silently adding another
// repository and shipping an unexpected transitive dependency.
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "FadeSnap"
include(":app")