38 lines
1.6 KiB
Properties
38 lines
1.6 KiB
Properties
# Project-wide Gradle settings.
|
|
# 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 environment visit
|
|
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
# Specifies the JVM arguments used for the daemon process.
|
|
# The setting is particularly useful for tweaking memory settings.
|
|
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
|
|
# When configured, Gradle will run in incubating parallel mode.
|
|
# This option should only be used with decoupled projects. For more details, visit
|
|
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
|
|
# org.gradle.parallel=true
|
|
# Kotlin code style for this project: "official" or "obsolete":
|
|
kotlin.code.style=official
|
|
#Your project is using a version of the Android Gradle Plugin that has built-in Kotlin support,
|
|
# which conflicts with how KSP tries to register its generated sources.
|
|
# This tells AGP to allow KSP to use the kotlin.sourceSets DSL to register its generated code
|
|
# (the Room-generated AppDatabase_Impl etc.), which it needs to do.
|
|
android.disallowKotlinSourceSets=false
|
|
|
|
ksp.useKsp2=true
|
|
ksp.incremental=true
|
|
ksp.incremental.log=false
|
|
|
|
# Enable configuration cache
|
|
org.gradle.configuration-cache=true
|
|
|
|
# Parallel project execution (useful if you add more modules later)
|
|
org.gradle.parallel=true
|
|
|
|
# Increase heap if you see OOM during KSP/compilation
|
|
# org.gradle.jvmargs=-Xmx4g -XX:+UseG1GC
|
|
|
|
# Enable build caching (caches task outputs across clean builds)
|
|
org.gradle.caching=true
|
|
|