2025-07-04 16:51:17 +02:00
|
|
|
rootProject.name = "Feufaro"
|
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
2025-07-07 15:11:51 +02:00
|
|
|
google()
|
2025-07-04 16:51:17 +02:00
|
|
|
mavenCentral()
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
repositories {
|
2025-07-07 15:11:51 +02:00
|
|
|
google()
|
2025-07-04 16:51:17 +02:00
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-07 15:11:51 +02:00
|
|
|
include(":composeApp")
|