Init Android Studio Project

This commit is contained in:
2026-02-11 15:19:15 +01:00
parent d6c66f54ad
commit e03329cedb
47 changed files with 877 additions and 0 deletions

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 = "OpenTimeTracker"
include(":app")