This commit is contained in:
2025-04-13 23:33:29 +08:00
commit dc71bb19a9
51 changed files with 1544 additions and 0 deletions

31
settings.gradle.kts Normal file
View File

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