Init KMP project, add all files

This commit is contained in:
Digitool Solutions
2026-05-08 08:46:16 +07:00
commit 80a0a1c193
47 changed files with 1491 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
rootProject.name = "TorqueVaultKMP"
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")