1. ホーム
  2. アンドロイド

react-native パッケージングに失敗しました。jvmのヒープ領域を使い果たしたため、デーモンを終了させます。

2022-03-16 16:19:49
<パス

Error encountered: react-native android packaging failed: jvmのヒープ領域を使い果たしたため、デーモンを終了します。

  • 回避策 android-> gradle.propertiesファイルの下に、以下のコードを追加してください。
#Turn on threaded daemon for the first compile, and then not again
org.gradle.daemon=true
# Configure the size of the VM at compile time
org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
#Enable parallel compilation, equivalent to multiple threads going again
org.gradle.parallel=true
#Enable the new hatching mode
org.gradle.configureondemand=true