forked from whyorean/AuroraStore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
35 lines (34 loc) · 962 Bytes
/
settings.gradle.kts
File metadata and controls
35 lines (34 loc) · 962 Bytes
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
/*
* SPDX-FileCopyrightText: 2021-2025 Rahul Kumar Patel <whyorean@gmail.com>
* SPDX-FileCopyrightText: 2022-2025 The Calyx Institute
* SPDX-License-Identifier: GPL-3.0-or-later
*/
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// libsu is only available via jitpack
maven("https://jitpack.io/") {
content {
includeModule("com.github.topjohnwu.libsu", "core")
}
}
// Only included in huawei variants
maven("https://developer.huawei.com/repo/") {
content {
includeGroup("com.huawei.hms")
includeGroup("com.huawei.android.hms")
}
}
}
}
include(":app")
rootProject.name = "AuroraStore4"