initial upload

This commit is contained in:
tom.hempel
2025-09-18 11:54:08 +02:00
commit be47be3b82
66 changed files with 3184 additions and 0 deletions

18
settings.gradle.kts Normal file
View File

@ -0,0 +1,18 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
rootProject.name = "LabRecorder"
include(":app")