initial commit

This commit is contained in:
2023-11-13 02:25:19 +03:00
commit a2c69a20c5
69 changed files with 1878 additions and 0 deletions

22
settings.gradle.kts Normal file
View File

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