-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
63 lines (57 loc) · 1.36 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
63 lines (57 loc) · 1.36 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
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"))
}
}
include(":app")
include(":app-screenshot-tests")
include(":bluetooth:api")
include(":bluetooth:data")
include(":bluetooth:ui")
include(":apps:ui")
include(":appstore:api")
include(":appstore:data")
include(":appstore:ui")
include(":common")
include(":common-android")
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(":navigation-impl")
include(":shared-resources")
include(":voice:api")
include(":voice:data")
include(":webservices:api")
include(":webservices:data")
include(":webservices:ui")