Initial commit

This commit is contained in:
Amk
2026-02-24 13:56:54 +00:00
commit 0ef8a1e255
86 changed files with 3124 additions and 0 deletions

35
settings.gradle.kts Normal file
View File

@@ -0,0 +1,35 @@
rootProject.name = "ContactsAssessment"
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()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.10.0"
}
include(":composeApp")