mirror of
https://github.com/mollyim/mollyim-android.git
synced 2025-05-12 21:30:39 +01:00
Restrict Google maven repository scope in settings.gradle.kts
This commit is contained in:
parent
281badd840
commit
1482aaec08
1 changed files with 7 additions and 1 deletions
|
@ -9,7 +9,13 @@ pluginManagement {
|
||||||
dependencyResolutionManagement {
|
dependencyResolutionManagement {
|
||||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google {
|
||||||
|
content {
|
||||||
|
includeGroupByRegex("com\\.android(\\..*)?")
|
||||||
|
includeGroupByRegex("com\\.google(\\..*)?")
|
||||||
|
includeGroupByRegex("androidx?(\\..*)?")
|
||||||
|
}
|
||||||
|
}
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
mavenLocal {
|
mavenLocal {
|
||||||
content {
|
content {
|
||||||
|
|
Loading…
Reference in a new issue