Files
AuroraStore/settings.gradle.kts
Rahul Patel dd7f495e26 update repository content filter
ag-coreservice has many transitive dependencies, for example:
- com.huawei.hms:ag-autoparcelable
- com.huawei.android.hms:security-base
- com.huawei.android.hms:security-ssl
- com.huawei.hms:installersdk

Setting a restrictive content filter results in gradle failure.
2025-12-24 12:58:47 +05:30

36 lines
962 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 {
includeGroup("com.huawei.hms")
includeGroup("com.huawei.android.hms")
}
}
}
}
include(":app")
rootProject.name = "AuroraStore4"