Files
trainingstagebuch/mobile-app/gradle.properties
Torsten Schulz (local) 48f71b9df1
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 44s
chore: update .gitignore and enhance backend and mobile app functionality
- Added mobile app build directories and configuration files to .gitignore for cleaner repository management.
- Improved error handling in diaryMemberController by requiring diaryDateId and memberId query parameters.
- Refactored DiaryMemberService to log tag IDs instead of raw values for better debugging.
- Enhanced TournamentParticipantsTab and TournamentTab components with improved touch-action properties for better user experience.
- Updated mobile app's gradle.properties and build.gradle.kts for compatibility with AGP 9.x and Kotlin 2.1.21, including new dependencies for Coil and UCrop.
- Refactored MainApplication to simplify initialization and improved MainActivity to handle dependencies more robustly.
- Updated various UI components in the mobile app to enhance layout and functionality, including MemberDetailScreen and MemberEditScreen.
2026-05-12 23:14:31 +02:00

45 lines
1.5 KiB
Properties
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Project-wide Gradle settings.
# For more details on how to configure your build, see
# http://www.gradle.org/docs/current/userguide/build_setting.html
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build, see
# http://www.gradle.org/docs/current/userguide/build_setting.html
# The Gradle daemon will run in the background.
# Default is true.
org.gradle.daemon=true
# The Gradle daemon will be started with 4096MB of memory.
# Default is 512MB.
org.gradle.jvmargs=-Xmx4096m
# When set to true the Gradle daemon will reuse any existing idle daemon.
# Default is true.
org.gradle.parallel=true
# When set to true, Gradle will attempt to configure only necessary projects.
# Default is false.
org.gradle.configureondemand=true
# When set to true, Gradle will use the configuration cache.
# Default is false.
org.gradle.configuration-cache=true
kotlin.code.style=official
android.useAndroidX=true
android.nonTransitiveRClass=true
# Backend für die Standard-App-Installation.
# Hinweis: In Android Studio unter Settings → Build Tools → Gradle können „Command-line options“
# gesetzt sein (z. B. -PbackendBaseUrl=...) die überschreiben u. U. diese Zeile.
backendBaseUrl=https://tt-tagebuch.de
# Temporary workaround for AGP 9.x + Kotlin Multiplatform plugin incompatibility.
# (See AGP error message suggesting these flags.)
android.builtInKotlin=false
android.newDsl=false