-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
65 lines (58 loc) · 1.38 KB
/
settings.gradle.kts
File metadata and controls
65 lines (58 loc) · 1.38 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
google()
mavenCentral()
maven("https://jitpack.io")
}
versionCatalogs {
create("libs") {
from(files("config/libs.toml"))
}
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "MicroPebble"
includeBuild("libs/libpebble3") {
dependencySubstitution {
substitute(module("com.coredevices:libpebble3"))
.using(project(":libpebble3"))
}
}
includeBuild("libs/kotlin-speex") {
dependencySubstitution {
substitute(module("com.coredevices:speex"))
.using(project(":library"))
}
}
include(":app")
include(":bluetooth:api")
include(":bluetooth:data")
include(":bluetooth:ui")
include(":apps:ui")
include(":common")
include(":common:test")
include(":common-android")
include(":common-android:test")
include(":common-compose")
include(":common-navigation")
include(":detekt")
include(":home:ui")
include(":logging:api")
include(":logging:crashreport")
include(":logging:data")
include(":notification:api")
include(":notification:data")
include(":notification:ui")
include(":shared-resources")
include(":voice:data")
include(":voice:speex_codec")
include(":shared")