Initial commit

This commit is contained in:
Ben Martin 2025-01-20 22:23:52 +00:00
commit 4b0c4c406f
Signed by: ben
GPG key ID: 859A655FCD290E4A
46 changed files with 1456 additions and 0 deletions

31
settings.gradle.kts Normal file
View file

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