-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle
39 lines (35 loc) · 1.19 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
import org.gradle.api.initialization.resolve.RepositoriesMode
pluginManagement {
repositories {
google()
mavenCentral()
maven{url 'https://jitpack.io'}
maven { url "https://plugins.gradle.org/m2/" }
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven{url 'https://jitpack.io'}
maven { url "https://plugins.gradle.org/m2/" }
gradlePluginPortal()
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/ARK-Builders/arklib-android"
credentials {
username = "token"
password = "\u0037\u0066\u0066\u0036\u0030\u0039\u0033\u0066\u0032\u0037\u0033\u0036\u0033\u0037\u0064\u0036\u0037\u0066\u0038\u0030\u0034\u0039\u0062\u0030\u0039\u0038\u0039\u0038\u0066\u0034\u0066\u0034\u0031\u0064\u0062\u0033\u0064\u0033\u0038\u0065"
}
}
}
versionCatalogs {
create("libraries") {
from(files("./gradle/libs.versions.toml"))
}
}
}
rootProject.name = "ARK Memo"
include ':app'