Added frontend skeleton

This commit is contained in:
2025-04-25 18:15:37 +02:00
parent eea2af9789
commit 827c5e013d
23 changed files with 3601 additions and 0 deletions

View File

@ -0,0 +1,31 @@
rootProject.name = "frontend"
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")