Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Maximum Heap Size From 6 to 10 GB #3656

Merged
merged 6 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,24 @@

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx6144m
org.gradle.jvmargs=-Xmx10g -XX:MaxMetaspaceSize=4g

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

org.gradle.daemon=true
android.useAndroidX=true
android.enableJetifier=true
android.defaults.buildfeatures.buildconfig=true
android.suppressUnsupportedCompileSdk=34
android.jetifier.ignorelist=jackson-core
#org.gradle.daemon.max-idle-time=10800000 // 3 hours in milliseconds

org.gradle.warning.mode=all
org.gradle.configuration-cache=true
org.gradle.caching=false
org.gradle.parallel=true
org.gradle.configureondemand=true

android.enableR8.fullMode=true
android.enableR8.fullMode=false
2 changes: 1 addition & 1 deletion android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ androidx-test= "1.6.2"
appcompat = "1.7.0"
benchmark-junit = "1.3.3"
cardview = "1.0.0"
common-utils = "1.0.0-SNAPSHOT"
common-utils = "1.0.1-SNAPSHOT"
compose-ui = "1.6.8"
compressor = "3.0.1"
constraintlayout = "2.1.4"
Expand Down
5 changes: 4 additions & 1 deletion android/quest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,10 @@ android {

testCoverage { jacocoVersion = BuildConfigs.jacocoVersion }

lint { abortOnError = false }
lint {
checkReleaseBuilds = true
abortOnError = false
}

flavorDimensions += "apps"

Expand Down
Loading