forked from violetljj/blind-assist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
39 lines (36 loc) · 1.3 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
39 lines (36 loc) · 1.3 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "BlindAssist"
include(":app")
include(":npu-candidate")
include(":device-benchmark")
include(":hftf-device-canary")
include(":hftf-depth-demo-app")
include(":hftf-metric-depth-canary-core")
include(":core:assist")
include(":core:ustrf")
include(":ustrf-shadow-benchmark")
include(":known-height-capture-app")
include(":core:vision")
include(":core:device")
include(":core:ui")
include(":feature:assist")
project(":device-benchmark").projectDir = file("apps/benchmarks/device-benchmark")
project(":ustrf-shadow-benchmark").projectDir = file("apps/benchmarks/ustrf-shadow-benchmark")
project(":hftf-device-canary").projectDir = file("apps/canaries/hftf-device-canary")
project(":hftf-metric-depth-canary-core").projectDir = file("apps/canaries/hftf-metric-depth-canary-core")
project(":hftf-depth-demo-app").projectDir = file("apps/demos/hftf-depth-demo-app")
project(":known-height-capture-app").projectDir = file("apps/demos/known-height-capture-app")
project(":npu-candidate").projectDir = file("apps/candidates/npu-candidate")