Files
trainingstagebuch/mobile-app/settings.gradle.kts
Torsten Schulz (local) 41bbf81958
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 44s
chore: remove obsolete Android app configuration files
- Deleted build.gradle.kts, gradle.properties, and gradlew files as part of the cleanup process.
- Removed local.properties and various generated files from the .gradle directory to streamline the project structure.
- Cleared out unnecessary build artifacts and intermediate files to improve project maintainability.
2026-04-21 15:15:21 +02:00

21 lines
446 B
Kotlin

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven("https://maven.pkg.jetbrains.space/public/p/compose/patch")
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/patch")
}
}
rootProject.name = "Trainingstagebuch"
include(":composeApp")
include(":shared")