Skip to content

Commit

Permalink
🔧 Update gradle configs (#3656)
Browse files Browse the repository at this point in the history
  • Loading branch information
dubdabasoduba authored Dec 16, 2024
2 parents ce5a557 + 130b63a commit b97dd66
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
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

0 comments on commit b97dd66

Please sign in to comment.