mirror of
https://github.com/whyorean/AuroraStore.git
synced 2025-12-23 22:27:55 -05:00
Resolve license and copyright issues for all files other than the "app/" module Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
35 lines
926 B
Kotlin
35 lines
926 B
Kotlin
/*
|
|
* 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 {
|
|
includeModule("com.huawei.hms", "ag-coreservice")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
include(":app")
|
|
rootProject.name = "AuroraStore4"
|