All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 54s
- Changed file permissions from 644 to 755 for various files in the mobile-app and mobile-app_legacy_rn_expo directories, ensuring executable permissions where necessary. - Added a new SQL migration script to the backend to introduce missing columns for club billing and invoice settings in the clubs table, maintaining synchronization with the current Sequelize model.
49 lines
1.7 KiB
Properties
Executable File
49 lines
1.7 KiB
Properties
Executable File
# 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
|
||
|
||
# Avoid Kotlin daemon RMI failures when incremental cache errors occur in Android Studio builds.
|
||
# Gradle still uses its daemon; Kotlin compilation runs in the Gradle build process.
|
||
kotlin.compiler.execution.strategy=in-process
|
||
|
||
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
|