Skip to content

Commit

Permalink
chore(circleci): remove _JAVA_OPTIONS from Android config to simplify…
Browse files Browse the repository at this point in the history
… environment setup (#497)

The _JAVA_OPTIONS environment variable is removed as it is no longer necessary for the build process. This change simplifies the configuration and reduces potential conflicts with Java options.

chore(dependencies): bump react-native template version to 2.7.4
The version of the React Native template is updated from 2.7.3 to 2.7.4 to incorporate the latest improvements and bug fixes. This ensures that the project benefits from the most recent updates and maintains compatibility with the latest tools and libraries.
  • Loading branch information
mabdullahabid authored Oct 3, 2024
1 parent 507f51c commit f963abe
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ jobs:
environment:
- TERM: "dumb"
- ADB_INSTALL_TIMEOUT: 10
- _JAVA_OPTIONS: "-XX:+UnlockExperimentalVMOptions -XX:+UseContainerSupport"
- GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-XX:+HeapDumpOnOutOfMemoryError"'
- BUILD_THREADS: 2
steps:
Expand Down Expand Up @@ -124,7 +123,6 @@ jobs:
environment:
- TERM: "dumb"
- ADB_INSTALL_TIMEOUT: 10
- _JAVA_OPTIONS: "-XX:+UnlockExperimentalVMOptions -XX:+UseContainerSupport"
- GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-XX:+HeapDumpOnOutOfMemoryError"'
- BUILD_THREADS: 2
steps:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scaffold": {
"type": "react-native",
"version": "2.7.3",
"version": "2.7.4",
"cookiecutter_context": {
"project_name": "{{cookiecutter.project_name}}",
"project_slug": "{{cookiecutter.project_slug}}",
Expand Down
6 changes: 3 additions & 3 deletions dist/cookie/{{cookiecutter.project_slug}}/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3959,9 +3959,9 @@ electron-to-chromium@^1.4.284:
integrity sha512-xZ0y4zjWZgp65okzwwt00f2rYibkFPHUv9qBz+Vzn8cB9UXIo9Zc6Dw81LJYhhNt0G/vR1OJEfStZ49NKl0YxQ==

electron-to-chromium@^1.5.28:
version "1.5.31"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.31.tgz#b1478418769dec72ea70d9fdf147a81491857f10"
integrity sha512-QcDoBbQeYt0+3CWcK/rEbuHvwpbT/8SV9T3OSgs6cX1FlcUAkgrkqbg9zLnDrMM/rLamzQwal4LYFCiWk861Tg==
version "1.5.32"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.32.tgz#4a05ee78e29e240aabaf73a67ce9fe73f52e1bc7"
integrity sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==

emittery@^0.13.1:
version "0.13.1"
Expand Down
2 changes: 1 addition & 1 deletion scaffold/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "template",
"description": "React Native Template",
"version": "2.7.3",
"version": "2.7.4",
"author": "Crowdbotics"
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ jobs:
environment:
- TERM: "dumb"
- ADB_INSTALL_TIMEOUT: 10
- _JAVA_OPTIONS: "-XX:+UnlockExperimentalVMOptions -XX:+UseContainerSupport"
- GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-XX:+HeapDumpOnOutOfMemoryError"'
- BUILD_THREADS: 2
steps:
Expand Down Expand Up @@ -124,7 +123,6 @@ jobs:
environment:
- TERM: "dumb"
- ADB_INSTALL_TIMEOUT: 10
- _JAVA_OPTIONS: "-XX:+UnlockExperimentalVMOptions -XX:+UseContainerSupport"
- GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-XX:+HeapDumpOnOutOfMemoryError"'
- BUILD_THREADS: 2
steps:
Expand Down

0 comments on commit f963abe

Please sign in to comment.