Files
TaskTTL/settings.gradle.kts

35 lines
838 B
Plaintext
Raw Permalink Normal View History

2025-04-13 23:33:29 +08:00
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()
}
}
2025-10-08 18:08:15 +08:00
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
2025-04-13 23:33:29 +08:00
include(":composeApp")