-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
47 lines (43 loc) · 1.04 KB
/
settings.gradle.kts
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
/*
* Copyright (c) 2011 - 2023, Zingaya, Inc. All rights reserved.
*/
pluginManagement {
repositories {
mavenLocal()
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
google()
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/groups/staging")
}
}
}
rootProject.name = "Voximplant SDK Demo"
include(":app")
include(":core:calls")
include(":core:common")
include(":core:data")
include(":core:datastore")
include(":core:designsystem")
include(":core:domain")
include(":core:foundation")
include(":core:logger")
include(":core:model")
include(":core:notifications")
include(":core:permissions")
include(":core:push")
include(":core:resources")
include(":core:ui")
include(":feature:catalog")
include(":feature:login")
include(":feature:audiocall")
include(":feature:audiocall-incoming")
include(":feature:audiocall-ongoing")