-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
52 lines (47 loc) · 1.31 KB
/
settings.gradle.kts
File metadata and controls
52 lines (47 loc) · 1.31 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
import java.net.URI
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven {
url = URI("https://jitpack.io")
}
maven {
url = URI("https://gitlab.linphone.org/BC/public/maven_repository/raw/master")
}
maven {
url = URI("https://maven.google.com/")
}
maven {
url = URI("https://oss.sonatype.org/content/repositories/snapshots")
}
maven {
url = URI("https://mvnrepository.com/artifact")
}
maven {
url = URI("https://repo.mirrorfly.com/release")
}
}
}
include(":app", ":sdk:imagecropper", ":sdk:pix", ":sdk:mediapicker",":sdk:biometric-auth", ":sdk:zoomimageview")
include(":call")
include(":app")
rootProject.name = "UI-Kit"
include(":sdk:cameraview")
include("sdk:googletranslation")
include(":sdk:spinnerview")