-
-
Notifications
You must be signed in to change notification settings - Fork 453
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
29 lines (29 loc) · 749 Bytes
/
settings.gradle.kts
File metadata and controls
29 lines (29 loc) · 749 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
@file:Suppress("UnstableApiUsage")
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
}
rootProject.name = "chatgpt-android"
include(":app")
include(":core-model")
include(":core-network")
include(":core-preferences")
include(":core-data")
include(":core-designsystem")
include(":core-navigation")
include(":feature-chat")
include(":feature-login")
include(":benchmark")