-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
42 lines (40 loc) · 1.13 KB
/
settings.gradle.kts
File metadata and controls
42 lines (40 loc) · 1.13 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
maven {
url = uri("https://jitpack.io")
content {
includeGroupByRegex("com\\.github\\..*")
}
}
maven {
url = uri("https://cruglobal.jfrog.io/artifactory/maven-mobile/")
content {
includeGroup("org.ccci.gto.android")
includeGroup("org.ccci.gto.android.testing")
}
}
maven {
// This repository contains pre-release versions of the Compose Compiler
url = uri("https://androidx.dev/storage/compose-compiler/repository/")
content {
includeGroup("androidx.compose.compiler")
}
}
jcenter {
content {
includeModule("com.ochim", "recyclertablayout-androidx")
includeModule("dk.ilios", "realmfieldnameshelper")
}
}
google()
mavenCentral()
}
}
include(":app")