Add gradle.properties and .gitignore

gradle.properties sets JVM heap to 2 GiB and enables daemon/parallel/caching
flags — required to prevent Gradle GC thrashing on first build. .gitignore
excludes build outputs, .gradle cache dirs, local.properties, and IDE files
going forward.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-22 17:44:50 -05:00
parent bba09dc131
commit 52e5b56133
2 changed files with 24 additions and 0 deletions

7
gradle.properties Normal file
View File

@@ -0,0 +1,7 @@
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.caching=true
android.useAndroidX=true
android.enableJetifier=false
kotlin.code.style=official