-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
28 lines (27 loc) · 685 Bytes
/
settings.gradle.kts
File metadata and controls
28 lines (27 loc) · 685 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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
jcenter() // Warning: this repository is going to shut down soon
}
}
rootProject.name = "Nextflix-Composable"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":app")
include(":domain")
include(":data")
include(":common-ui")
include(":upcoming")
include(":nowplaying")
include(":popular")
include(":data-test")