-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
43 lines (39 loc) · 1.12 KB
/
settings.gradle.kts
File metadata and controls
43 lines (39 loc) · 1.12 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
rootProject.name = "NoteDelight"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":core:domain")
//include(":core:data:db-room")
include(":core:data:db-sqldelight")
include(":feature:file-explorer:data")
include(":feature:backup:domain")
include(":feature:backup:ui")
include(":core:presentation")
include(":core:test")
include(":ui:shared")
include(":ui:test-jvm")
include(":ui:test")
include(":thirdparty:app:cash:sqldelight:paging3")
include(":app:android")
include(":app:desktop")
include(":app:ios-kit")
include(":app:web")
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google()
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
includeBuild("build-logic")
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
maven(url = "https://s3.amazonaws.com/repo.commonsware.com")
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}