-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle
50 lines (48 loc) · 1.35 KB
/
settings.gradle
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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal()
}
versionCatalogs {
create("libs") {
/** Core **/
library("core", "androidx.core","core-ktx").version("1.9.0")
library("appcompat", "androidx.appcompat","appcompat").version("1.5.1")
library("material", "com.google.android.material","material").version("1.7.0")
bundle("core-bundle",[
"core",
"appcompat",
"material"
])
/** Networking **/
library("retrofit", "com.squareup.retrofit2", "retrofit").version("2.9.0")
library("converter-gson", "com.squareup.retrofit2","converter-gson").version("2.7.1")
bundle("retrofit-bundle", [
"retrofit",
"converter-gson"
])
/** Unit Testing **/
library("junit", "junit", "junit").version("4.13.2")
library("kotlin-coroutines-test", "org.jetbrains.kotlinx", "kotlinx-coroutines-test").version("1.6.4")
library("core-test", "androidx.arch.core", "core-testing").version("2.1.0")
bundle("testing-unit-bundle",[
"junit",
"kotlin-coroutines-test",
"core-test"
])
library("audiocodes", "audiocodes", "audiocodes").withoutVersion()
}
}
}
rootProject.name = "webrtc"
include ':sample'
include ':webrtc-legacy'