fix(build): switch over to `includeGroupAndSubgroups` API

The bug that broke this was fixed in Gradle 8.7
This commit is contained in:
Harsh Shandilya 2024-03-31 17:33:16 +05:30
parent feae5d2630
commit d3f9bb4c00
2 changed files with 4 additions and 4 deletions

View File

@ -27,8 +27,8 @@ pluginManagement {
forRepository { google() }
filter {
includeGroup("androidx.databinding")
includeGroupByRegex("com.android.*")
includeGroup("com.google.testing.platform")
includeGroupAndSubgroups("com.android")
}
}
mavenCentral { mavenContent { releasesOnly() } }

View File

@ -14,8 +14,8 @@ pluginManagement {
includeGroup("androidx.baselineprofile")
includeGroup("androidx.benchmark")
includeGroup("androidx.databinding")
includeGroupByRegex("com.android.*")
includeGroup("com.google.testing.platform")
includeGroupAndSubgroups("com.android")
}
}
exclusiveContent {
@ -73,8 +73,8 @@ dependencyResolutionManagement {
repositories {
google {
content {
includeGroupByRegex("androidx.*")
includeGroupByRegex("com.android.*")
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroup("com.google.android.gms")
includeModule("com.google.android.material", "material")
includeGroup("com.google.testing.platform")