Project setup

This commit is contained in:
Reinout Meliesie 2024-07-25 23:27:14 +02:00
parent b131fceb1f
commit d129c407d3
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
19 changed files with 713 additions and 0 deletions

23
settings.gradle.kts Normal file
View file

@ -0,0 +1,23 @@
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()
}
}
rootProject.name = "Zanbur"
include(":app")