forked from coredevices/mobileapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
39 lines (34 loc) · 799 Bytes
/
settings.gradle.kts
File metadata and controls
39 lines (34 loc) · 799 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
30
31
32
33
34
35
36
37
38
39
import java.util.Properties
val properties = Properties()
if (file("local.properties").exists()) {
file("local.properties").inputStream().use { properties.load(it) }
}
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url = uri("https://jitpack.io") }
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
rootProject.name = "libpebbleroot"
include(":libpebble3")
include(":blobdbgen")
include(":blobannotations")
include(":composeApp")
include(":pebble")
include(":util")
include(":mcp")
include(":index-ai")
include(":resampler")
include(":cactus")
include(":libindex")
include(":experimental")
include(":krisp-stubs")