Initial commit

This commit is contained in:
2023-09-26 17:25:00 +01:00
commit 30e3c01385
41 changed files with 869 additions and 0 deletions

17
settings.gradle.kts Normal file
View File

@@ -0,0 +1,17 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "TaskMuse"
include(":app")