basic Android app setup

This commit is contained in:
Clara Dautermann 2025-05-03 19:49:44 +02:00
parent 8a0824a846
commit 86263a94cd
Signed by: clara
GPG key ID: 223391B52FAD4463
61 changed files with 1556 additions and 0 deletions

View file

@ -0,0 +1,24 @@
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 = "DBT App"
include(":app")