-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
39 lines (37 loc) · 896 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
39 lines (37 loc) · 896 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
34
35
36
37
38
39
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "nowinmtg"
include(":app")
include(":core:network")
include(":core:model")
include(":core:data")
include(":core:common")
include(":core:design")
include(":core:database")
include(":feature:randomcards")
include(":feature:carddetails")
include(":feature:sets")
include(":feature:search")
include(":core:domain")
include(":core:ui")
include(":feature:favorites")
include(":feature:setdetails")
include(":feature:settings")
include(":core:datastore")
include(":core:navigation")