Modernize test-fixture project. (#465)

This commit is contained in:
Yang
2026-03-14 17:27:13 +11:00
committed by GitHub
parent 38164a29c1
commit 597aa7c21b
13 changed files with 92 additions and 89 deletions
+28
View File
@@ -0,0 +1,28 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("androidx.*")
includeGroupByRegex("com.android.*")
includeGroupByRegex("com.google.*")
}
}
mavenCentral()
}
}
rootProject.name = "Test Project"
include(":app")
dependencyResolutionManagement {
repositories {
google {
content {
includeGroupByRegex("androidx.*")
includeGroupByRegex("com.android.*")
includeGroupByRegex("com.google.*")
}
}
mavenCentral()
}
}