chore: initial commit

This commit is contained in:
2026-04-17 08:23:57 +07:00
commit ccda11ed27
32 changed files with 926 additions and 0 deletions

31
settings.gradle.kts Normal file
View File

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