2025-05-27 12:08:45 -04:00
|
|
|
@file:Suppress("UnstableApiUsage")
|
|
|
|
|
2025-05-23 20:04:56 -04:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
google {
|
|
|
|
content {
|
|
|
|
includeGroupByRegex("com\\.android.*")
|
|
|
|
includeGroupByRegex("com\\.google.*")
|
|
|
|
includeGroupByRegex("androidx.*")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
2025-05-27 12:08:45 -04:00
|
|
|
maven {
|
|
|
|
url = uri("https://androidx.dev/snapshots/builds/13555495/artifacts/repository")
|
|
|
|
}
|
2025-05-23 20:04:56 -04:00
|
|
|
}
|
|
|
|
}
|
2025-05-27 12:08:45 -04:00
|
|
|
|
2025-05-23 20:04:56 -04:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2025-05-27 12:08:45 -04:00
|
|
|
maven {
|
|
|
|
url = uri("https://androidx.dev/snapshots/builds/13555495/artifacts/repository")
|
|
|
|
}
|
2025-05-23 20:04:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "Aisle17"
|
|
|
|
include(":app")
|
|
|
|
|