mirror of
https://github.com/reactivecircus/android-emulator-runner.git
synced 2026-08-31 17:49:33 +00:00
29 lines
640 B
Kotlin
29 lines
640 B
Kotlin
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()
|
|
}
|
|
}
|