org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError android.useAndroidX=true android.enableJetifier=true # Disable Gradle VFS watcher to avoid UNC path stat errors org.gradle.vfs.watch=false # Mitigate Windows/UNC mixed root issues and Kotlin incremental cache failures org.gradle.caching=false kotlin.incremental=false kotlin.incremental.useClasspathSnapshot=false org.gradle.parallel=false # Force non-daemon, single worker, and in-process Kotlin compiler to avoid mixed-root cache issues on Windows/UNC org.gradle.daemon=false org.gradle.workers.max=1 kotlin.compiler.execution.strategy=in-process # Ensure Kotlin incremental compilation is fully disabled for Android modules on Windows mixed roots kotlin.incremental.android=false