Add gradle.properties with AndroidX support, Jetifier, SDK 35 compatibility, Kotlin official code style, build caching, and JVM memory settings (3GB heap with UTF-8 encoding).
7 lines
193 B
Properties
7 lines
193 B
Properties
android.useAndroidX=true
|
|
android.enableJetifier=true
|
|
android.suppressUnsupportedCompileSdk=35
|
|
kotlin.code.style=official
|
|
org.gradle.caching=true
|
|
org.gradle.jvmargs=-Xmx3g -Dfile.encoding=UTF-8
|