First commit

This commit is contained in:
2025-01-19 11:07:46 +01:00
commit 8902b17d66
112 changed files with 3476 additions and 0 deletions

33
settings.gradle.kts Normal file
View File

@@ -0,0 +1,33 @@
rootProject.name = "KTrans"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
}
}
include(":composeApp")
include(":server")
include(":shared")