Implemented two optimizations suggested by Android Studio, which seem to make a significant difference in debug build time

This commit is contained in:
eranl 2025-03-09 02:01:18 +02:00
parent e9a2a7ebb1
commit b03fa1ea5d
2 changed files with 3 additions and 2 deletions

View file

@ -36,7 +36,7 @@ android {
isJniDebuggable = false
}
debug {
isMinifyEnabled = true
isMinifyEnabled = false
isJniDebuggable = false
applicationIdSuffix = ".debug"
}

View file

@ -1,2 +1,3 @@
android.useAndroidX=true
org.gradle.jvmargs=-Xmx1024m
org.gradle.configuration-cache=true
org.gradle.jvmargs=-Xmx1024m