mirror of
https://github.com/aimok04/kitshn.git
synced 2025-12-19 21:16:23 +01:00
32 lines
828 B
Plaintext
32 lines
828 B
Plaintext
rootProject.name = "kitshn"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
includeGroupByRegex("android.*")
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
includeGroupByRegex("android.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
maven("https://jogamp.org/deployment/maven")
|
|
}
|
|
}
|
|
include(":composeApp") |