initial KMP setup

This commit is contained in:
Daniel Yrovas 2024-06-06 12:56:03 +10:00
commit fbfaf9be00
47 changed files with 1469 additions and 0 deletions

31
settings.gradle.kts Normal file
View file

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