Skip to content

Commit

Permalink
Stop the gradle daemon from being spawned each run (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
NigelBreslaw authored Feb 3, 2024
1 parent 0a0e987 commit 7d83b6d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion native_gg/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,19 @@
# Default value: -Xmx512m -XX:MaxMetaspaceSize=256m
org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m

# Gradle will try to reuse outputs from previous builds for all builds, unless explicitly disabled with --no-build-cache.
# Gradle will try to reuse outputs from previous builds for all builds,
# unless explicitly disabled with --no-build-cache.
org.gradle.caching=true

# 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

# Disables the Gradle daemon which saves some time in CI where creating it is
# pointless as the free runners are thrown away after the build.
org.gradle.daemon=false

# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
Expand Down

0 comments on commit 7d83b6d

Please sign in to comment.