forked from kyujin-cho/Bada
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgradle.properties
More file actions
23 lines (19 loc) · 871 Bytes
/
gradle.properties
File metadata and controls
23 lines (19 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# JVM args for the Gradle daemon. Quick Share dependencies (Tink, protobuf,
# the Android build tools) inflate the daemon's working set noticeably; 4 GB
# keeps GC pauses low on CI and 16 GB dev laptops alike.
org.gradle.jvmargs=-Xmx4g -Dfile.encoding=UTF-8 -XX:+UseParallelGC
# Performance flags. Configuration cache stays off for now: AGP 8.7 marks it
# stable but several third-party plugins (ktlint, detekt) still emit
# deprecation warnings against it. Re-evaluate once Phase 1 stabilises.
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.configuration-cache=false
# Kotlin compiler
kotlin.code.style=official
kotlin.incremental=true
# AndroidX
android.useAndroidX=true
android.nonTransitiveRClass=true
android.nonFinalResIds=true
# Suppress noisy warnings about unstable AGP API usage in third-party plugins.
android.suppressUnsupportedCompileSdk=36