mobile-app/settings.gradle.kts

27 lines
604 B
Text
Raw Normal View History

2024-01-29 08:54:28 +00:00
import java.net.URI
2024-01-01 01:52:41 +00:00
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
2024-01-29 08:54:28 +00:00
maven { url = URI("https://jitpack.io") }
2024-01-01 01:52:41 +00:00
}
}
rootProject.name = "Popequer"
include(":app")